.wrapper_for_registration_confirm_form{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(143, 143, 143, 0.5);
    z-index: 9999;
}

.wrapper_for_registration_confirm_form .registration_confirm_form_outer_container{
    max-width: 799px;
    width: calc(100% - 60px);
    min-height: 560px;
    position: absolute;
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
}

.registration_confirm_form_container{
    max-width: 440px;
    width: 100%;
    margin: auto
}

.registration_confirm_form_container .registration_confirm_form_content{
    text-align: center;
    margin-top: 15px;
}

.registration_confirm_form_container .registration_confirm_form_content h2{
    font-size: 32px;
    line-height: 128%;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.registration_confirm_form_container .registration_confirm_form_content .separator_line{
    width: 80px;
    margin-bottom: 31px;
    border-top: 1px solid #000000;
    height: 1px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

.registration_confirm_form_container .registration_confirm_form_content p{
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 39px;
}

.registration_confirm_form_content form input{
    width: 100%;
    height: 54px;
    font-size: 18px;
    padding-left: 24px;
    color: #93918D;
    outline: none;
    border: 1px solid #68655F;
}

.registration_confirm_form_content form .input-group{
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.registration_confirm_form_outer_container .close_popup_button{
    display: block;
    width: 29px;
    height: 29px;
    position: relative;
    left: 100%;
    transform: translateX(-100%);
    cursor: pointer;
}

.submit_confirm_password_button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background: #800116;
    color: white!important;
    font-size: 18px!important;
    text-transform: capitalize;
    font-weight: 600!important;
    transition: .3s;
    cursor: pointer;
}

.submit_confirm_password_button:hover{
    background: #922122;
}

.registration_confirm_form_content form{
    border-bottom: 1px solid #68655F;
    padding-bottom: 43px;
}