.modal{
    position: fixed;
    top: 50%;
    z-index: 999999999999;
    left: 50%;
    display: flex;
    transform: translate(-50%,-50%);
    width: 43%;
    padding:20px 30px;
    background: #fff;
    border: 1px solid #B3B3B3;
    border-radius: 30px;
    overflow-y: scroll;

}
.modal::-webkit-scrollbar {
     display: none;  /* Safari and Chrome */
 }
.modal_overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 99999;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;
    background: #38383894;

}
.modal p{
    margin-top: 10px;
    line-height: 24px;
    font-size: 13px;
    text-align: right;
    color: #000;
}
.modal div > p{
    margin-top: 3px;
    line-height: 24px;
    font-size: 13px;
    text-align: right;
    color: red;
}
.modal_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal_top button{
    border: 0;
    background: 0;
    color: #000;
}
.modal_content{
    margin: 0 200px;
    margin-top: 200px;
}
.modal_content i {
    color: #939393;     font-weight: 300;
}
.modal_content input{
    text-align: center;color: #fff;
}

.modal_form button{
    background: #E42C64;
    border-radius: 10px;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: 0;
    margin-top: 19px;margin-bottom: 30px;
}

.modal_title{
    text-align: center;
    margin-bottom: 17px;
}
.modal_form label{
    text-align: right;
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 12px;
}
.avatar_box{
    margin-bottom: 25px;
    text-align: center;
}
.avatar_box img{
    width: 100px;
    height: 100px;
    border-radius: 50%;border: 2px solid #E42C64;
}
.modal_close{
    position: absolute;
    top: 28px;
    right: 28px;
    cursor: pointer;
    font-size: 17px;    color: #595959;
}
.login_link{
    color: #E42C64;
    font-size: 18px;
    margin-top: 14px;display: block;
}.avatar_delete_box button{
     background: transparent;
     border: 0;
     color: red;
     padding: 0;
     margin: 0;
     font-size: 17px;
 }.avatar_delete_box{
       margin-bottom:25px;
   }.show_password{
        position: absolute;
        right: 26px;
        top: 50%;
        color: #000 !important;
        cursor: pointer;
    }.show_password path{
                fill: #ADB5BD;
            }
@media(max-width: 992px) {
    .modal_content{
        margin: 0;
        margin-top: 60px;
    }.modal {
             width: 95%;
             padding: 20px;
             margin-top: 0;
             height: unset;
     }.modal_form input {
          margin-bottom: 20px;
      }
} 