.sb-auth-submit i{
    margin-right:8px;
}
.sb-auth-success{

    display:none;

    background:#e8f7ec;

    border:1px solid #8fd19e;

    color:#155724;

    padding:15px;

    border-radius:10px;

    margin-top:15px;

    line-height:1.5;
}

.sb-auth-success i{

    color:#28a745;

    margin-right:8px;

    font-size:18px;
}
.sb-account-dropdown{
    position:relative;
    display:inline-block;
}

.sb-account-name{
    margin-left:8px;
    font-size:14px;
    font-weight:600;
}

.sb-account-menu{
    position:absolute;
    right:0;
    top:100%;
    min-width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
    display:none;
    z-index:9999;
}

.sb-account-menu a{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;

}

.sb-account-menu a:hover{
    background:#f7f7f7;

}

.sb-account-dropdown:hover
.sb-account-menu{
    display:block;

}
.sb-auth-error{
    color:#dc3545;
    margin-top:10px;
    margin-bottom:15px;
    font-size:14px;
    display:none;
}
.sb-benefits{
    margin-top:35px;
    line-height:2;
    font-size:15px;
}
.sb-password-wrapper{
    position:relative;
}

.sb-password-wrapper input{
    padding-right:50px;
}

.sb-password-toggle{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#999;
}

.sb-password-toggle:hover{
    color:#F2A838;
}
.sb-field label i{
    width:18px;
    margin-right:8px;
    color:#F2A838;
    text-align:center;
}

.sb-auth-logo{
    max-width:260px;
    margin-bottom:40px;
}
.sb-auth-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(6px);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.sb-auth-modal{
    width:100%;
    max-width:820px;
    min-height:auto;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    display:flex;
    position:relative;
    box-shadow:
        0 40px 120px rgba(0,0,0,.25),
        0 15px 40px rgba(0,0,0,.15);
}

.sb-auth-left{
    width:42%;
    background:linear-gradient(135deg,#F2A838 0%,#E89A14 50%,#D68705 100%);
    color:#fff;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.sb-auth-left h2{
    font-size:32px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:20px;
}

.sb-auth-left p{
    font-size:16px;
    line-height:1.7;
    opacity:.95;
}

.sb-auth-right{
    width:58%;
    padding:50px;
    position:relative;
}

.sb-close-auth{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#2D2D2D;
    font-size:18px;
    cursor:pointer;
    z-index:9999;
    box-shadow:
        0 4px 15px rgba(0,0,0,.15);
    transition:.25s;
}

.sb-close-auth:hover{
    background:#F2A838;
    color:#2D2D2D;
    transform:scale(1.08);
}

.sb-auth-tabs{
    display:flex;
    gap:10px;
    margin-bottom:35px;
}

.sb-auth-tab{
    flex:1;
    border:none;
    padding:15px;
    border-radius:12px;
    cursor:pointer;
    background:#f4f4f4;
    font-weight:600;
}
.sb-auth-tab.active{
    background:#F2A838;
    color:#222;
    font-weight:700;
}

.sb-auth-form{
    display:none;
}

.sb-auth-form.active{
    display:block;
}

.sb-field{
    margin-bottom:9px;
}

.sb-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.sb-field input{
    width:100%;
    height:52px;
    border:1px solid #dcdcdc;
    border-radius:14px;
    padding:0 18px;
    transition:.2s;
}

.sb-field input:focus{
    
    border-color:#F2A838;
    box-shadow:0 0 0 4px rgba(242,168,56,.18);
    outline:none;
}

.sb-auth-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#F2A838;
    color:#2D2D2D;
    font-weight:700;
    font-size:16px;
    transition:.25s;
}
.sb-auth-submit:hover{
    background:#E89A14;
}

.sb-auth-links{
    text-align:center;
    margin-top:20px;
}

.sb-auth-links a{
    color:#0D6EFD;
}
.sb-field input{

    background:#fafafa;

    border:1px solid #e5e5e5;

    transition:.25s;

}
@media(max-width:991px){

    .sb-auth-modal{
        position:fixed;
        inset:0;
        width:100%;
        height:100%;
        max-width:none;
        border-radius:0;
        overflow-y:auto;
        display:block;
    }

    .sb-auth-left{
        display:none;
    }

    .sb-auth-right{
        width:100%;
        min-height:100vh;
        padding:30px;
    }

    .sb-auth-submit{
        height:60px;
    }

    .sb-field input{
        height:60px;
        font-size:16px;
    }
    .sb-auth-overlay{
    padding:0;
}

}