.wrapper{
    position: relative;
}

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 400px;
    max-width: 100%;
    border-radius: 12px;
    padding: 15px 20px;
    background-color: #f1f1f1;
    z-index: 4;
}

.popup--border{
    width: 100%;
    max-width: 486px;
    padding: 15px 40px;
    border: 1px solid #00000067;
    background-color: #fff;
    border-radius: 0;
}

.popup--hidde{
    display: none;
}

.popup__logo{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.popup__logo--center{
    align-items: center;
}

.popup__img{
    width: 160px;
    margin-bottom: 26px;
}

.popup__img--verified{
    width: 80px;
    height: 37px;
    margin: 10px 0 0 5px;
}

.popup__img--other{
    width: 60px;
    margin-bottom: 0;
    margin-right: 5px;
}

.popup__img--change{
    margin-top: 10px;
}

.popup__img--bank{
    margin: 0;
    padding: 0;
}

.popup__ttl{
    width: 100%;
    font-size: 22px;
    text-align: center;
}

.popup__ttl--other{
    text-align: left;
    font-size: 18px;
    margin-bottom: 15px;
}

.popup__sub{
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.popup__sub--other{
    text-align: left;
    margin-bottom: 50px;
}

.popup__form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.popup__content{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.popup__line{
    width: 100%;
    margin: 0 20px 20px;
    border-bottom: 1px solid #00000023;
}

.popup__left{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 30%;
    padding-right: 6px;
}

.popup__right{
    flex: 1;
    padding-left: 6px;
}

.popup__lbl{
    font-size: 14px;
    margin-bottom: 5px;
}

.popup__lbl--center{
    text-align: center;
    font-size: 14px;
    color: #616188;
}

.popup__input{
    width: 100%;
    height: 40px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 0 15px;
}

.popup__input--width{
    max-width: 350px;
}

.popup__submit{
    display: flex;
    justify-content: center;
    width: 100%;
}

.popup__btn{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    background-color: #A5C407;
    border: none;
}

.popup__btn--width{
    margin-top: 30px;
    max-width: 350px;
    text-transform: uppercase;
    background-color: #003ea9;
}

.popup__resend{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 40px;
    color: #003ea9;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.popup__resend--hidde{
    display: none;
}

.popup__help{
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 13px;
}