.soa-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.soa-container{
    width:420px;
    background:linear-gradient(180deg,#1c1c22,#111115);
    border-radius:20px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.soa-close{
    position:absolute;
    top:15px;
    right:20px;
    cursor:pointer;
    font-size:22px;
}

.soa-slider{
    display:flex;
    width:200%;
    transition:0.4s ease;
}

.soa-screen{
    width:50%;
}

.soa-container input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border-radius:12px;
    border:1px solid #333;
    background:#1e1e24;
    color:#fff;
}

.soa-container button{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:none;
    font-weight:600;
    cursor:pointer;
    margin-bottom:10px;
}

#soaContinue,
#soaVerify{
    background:#ffffff;
    color:#000;
}

.soa-toggle{
    text-align:center;
    font-size:14px;
    color:#aaa;
    cursor:pointer;
}

.soa-otp-wrapper{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.soa-otp{
    width:50px;
    text-align:center;
    font-size:20px;
}

.soa-resend{
    background:#333;
    color:#fff;
}

.soa-profile{
    position:relative;
    display:inline-block;
    cursor:pointer;
}

.soa-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    background:#fff;
    color:#000;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    min-width:160px;
}

.soa-dropdown a{
    display:block;
    padding:10px 15px;
    text-decoration:none;
    color:#000;
}

.soa-profile:hover .soa-dropdown{
    display:block;
}