/*==========================================================
ACMOBOOK AUTH SYSTEM
Production UI v1.0
==========================================================*/


/*==========================================================
ROOT VARIABLES
==========================================================*/

:root{

    --auth-primary:#4F7CFF;
    --auth-secondary:#18C8FF;

    --auth-dark:#101828;
    --auth-text:#344054;
    --auth-muted:#667085;

    --auth-border:#E4E7EC;

    --auth-bg:#F8FAFC;

    --auth-white:#FFFFFF;

    --auth-success:#12B76A;
    --auth-danger:#F04438;
    --auth-warning:#F79009;

    --glass:rgba(255,255,255,.78);

    --shadow-sm:
    0 8px 24px rgba(16,24,40,.06);

    --shadow-md:
    0 20px 50px rgba(16,24,40,.10);

    --shadow-lg:
    0 35px 80px rgba(16,24,40,.18);

    --radius:28px;

}


/*==========================================================
GLOBAL
==========================================================*/

.auth-modal *,
.auth-modal *::before,
.auth-modal *::after{

    box-sizing:border-box;

}

.auth-modal{

    position:fixed;

    inset:0;

    z-index:999999;

    display:none;

    align-items:center;

    justify-content:center;

    padding:40px;

}

.auth-modal.active{

    display:flex;

    animation:authFade .35s ease;

}


/*==========================================================
OVERLAY
==========================================================*/

.auth-overlay{

    position:absolute;

    inset:0;

    background:
    rgba(15,23,42,.65);

    backdrop-filter:

    blur(18px);

}


/*==========================================================
WINDOW
==========================================================*/

.auth-window{

    position:relative;

    width:100%;

    max-width:760px;

    max-height:90vh;

    overflow:hidden;

    overflow-y:auto;

    background:

    var(--glass);

    backdrop-filter:

    blur(40px);

    border:

    1px solid
    rgba(255,255,255,.65);

    border-radius:

    34px;

    box-shadow:

    var(--shadow-lg);

    z-index:2;

}


/*==========================================================
BACKGROUND
==========================================================*/

.auth-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

}

.orb{

    position:absolute;

    border-radius:50%;

    filter:blur(50px);

    opacity:.35;

}

.orb1{

    width:240px;

    height:240px;

    background:#4F7CFF;

    top:-80px;

    right:-80px;

}

.orb2{

    width:180px;

    height:180px;

    background:#18C8FF;

    bottom:-40px;

    left:-40px;

}

.orb3{

    width:160px;

    height:160px;

    background:#8B5CF6;

    top:50%;

    left:40%;

}

.grid-pattern{

    position:absolute;

    inset:0;

    opacity:.04;

    background-image:

    linear-gradient(#000 1px,transparent 1px),
    linear-gradient(90deg,#000 1px,transparent 1px);

    background-size:

    34px 34px;

}


/*==========================================================
CLOSE BUTTON
==========================================================*/

.auth-close{

    position:absolute;

    right:22px;

    top:22px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:20px;

    color:var(--auth-dark);

    box-shadow:

    var(--shadow-sm);

    transition:.25s;

    z-index:20;

}

.auth-close:hover{

    transform:rotate(90deg);

    background:#101828;

    color:#fff;

}

.auth-close:focus-visible{

    outline:none;

    box-shadow:var(--focus-ring, 0 0 0 3px rgba(79,124,255,.45));

}


/*==========================================================
HEADER
==========================================================*/

.auth-header{

    position:relative;

    z-index:2;

    text-align:center;

    padding:

    60px 60px 30px;

}

.auth-logo{

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;

}

.logo-dark{

    color:#101828;

}

.logo-gradient{

    background:

    linear-gradient(
    135deg,
    #5B5CFF,
    #1BC9FF);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.auth-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:

    8px 18px;

    border-radius:999px;

    background:

    rgba(79,124,255,.08);

    color:

    #4F7CFF;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.auth-header h2{

    font-size:34px;

    font-weight:800;

    color:#101828;

    margin-bottom:10px;

}

.auth-header p{

    max-width:520px;

    margin:auto;

    color:#667085;

    line-height:1.7;

    font-size:16px;

}


/*==========================================================
PROGRESS
==========================================================*/

.auth-progress{

    padding:

    0 60px
    25px;

}

.progress-track{

    height:8px;

    background:#EEF2F6;

    border-radius:100px;

    overflow:hidden;

}

.progress-fill{

    width:20%;

    height:100%;

    border-radius:100px;

    background:

    linear-gradient(
    90deg,
    #5B5CFF,
    #1BC9FF);

    transition:.4s;

}

.progress-text{

    margin-top:10px;

    text-align:right;

    font-size:13px;

    color:#667085;

    font-weight:600;

}

/*==========================================================
SCREENS
==========================================================*/

.auth-screens{

    position:relative;

    padding:0 60px;

    min-height:520px;

}

.auth-screen{

    display:none;

    animation:screenFade .35s ease;

}

.auth-screen.active,
.auth-screen.is-active{
    display:block;
}

.screen-top{

    text-align:center;

    margin-bottom:35px;

}

.screen-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    color:#fff;

    font-size:34px;

    box-shadow:var(--shadow-md);

}

.screen-top h2{

    font-size:32px;

    font-weight:800;

    color:#101828;

    margin-bottom:10px;

}

.screen-top p{

    color:#667085;

    font-size:16px;

    line-height:1.7;

    max-width:520px;

    margin:auto;

}


/*==========================================================
WELCOME
==========================================================*/

.welcome-hero{

    text-align:center;

    margin-bottom:40px;

}

.welcome-icon{

    display:flex;

    justify-content:center;

    margin-bottom:25px;

}

.icon-circle{

    width:110px;

    height:110px;

    border-radius:50%;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:48px;

    box-shadow:0 25px 60px rgba(91,92,255,.30);

}

.welcome-hero h2{

    font-size:38px;

    font-weight:800;

    color:#101828;

    margin-bottom:10px;

}

.welcome-hero p{

    color:#667085;

    font-size:17px;

}


/*==========================================================
FEATURES
==========================================================*/

.welcome-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:40px 0;

}

.feature-card{

    display:flex;

    gap:18px;

    padding:20px;

    border-radius:20px;

    background:#fff;

    border:1px solid #EEF2F6;

    transition:.30s;

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.feature-icon{

    width:56px;

    height:56px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    color:#fff;

    font-size:22px;

}

.feature-card h4{

    margin:0 0 5px;

    font-size:17px;

    font-weight:700;

    color:#101828;

}

.feature-card span{

    color:#667085;

    line-height:1.6;

    font-size:14px;

}


/*==========================================================
BUTTONS
==========================================================*/

.google-btn,
.email-btn,
.primary-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    cursor:pointer;

    transition:.30s;

    font-size:16px;

    font-weight:700;

}

.google-btn{

    background:#fff;

    color:#101828;

    border:1px solid #E4E7EC;

    box-shadow:var(--shadow-sm);

}

.google-btn img{

    width:22px;

}

.google-btn:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.email-btn,
.primary-btn{

    color:#fff;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    box-shadow:
    0 15px 35px rgba(91,92,255,.30);

}

.email-btn:hover,
.primary-btn:hover{

    transform:translateY(-3px);

}


/*==========================================================
DIVIDER
==========================================================*/

.auth-divider{

    display:flex;

    align-items:center;

    gap:16px;

    margin:28px 0;

}

.auth-divider::before,
.auth-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:#E4E7EC;

}

.auth-divider span{

    font-size:13px;

    color:#98A2B3;

    font-weight:700;

}


/*==========================================================
BOTTOM TEXT
==========================================================*/

.auth-bottom-text,
.screen-footer{

    margin-top:25px;

    text-align:center;

    color:#667085;

    font-size:15px;

}

.auth-bottom-text a,
.screen-footer a{

    color:#4F7CFF;

    text-decoration:none;

    font-weight:700;

}

.auth-bottom-text a:hover,
.screen-footer a:hover{

    text-decoration:underline;

}


/*==========================================================
WELCOME STATS
==========================================================*/

.welcome-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:35px;

}

.welcome-stats div{

    background:#fff;

    border-radius:18px;

    padding:18px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    border:1px solid #EEF2F6;

}

.welcome-stats strong{

    display:block;

    font-size:28px;

    color:#101828;

    font-weight:800;

}

.welcome-stats span{

    color:#667085;

    font-size:13px;

}

/*==========================================================
FORMS
==========================================================*/

form{

    width:100%;

}

.form-group{

    margin-bottom:24px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:600;

    color:#344054;

}


.otp-box{
    display:flex;
    justify-content:center;
    gap:14px;
    margin:35px 0;
}

.otp-input{
    width:58px;
    height:64px;
    border:2px solid #E5E7EB;
    border-radius:16px;
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#111827;
    background:#fff;
    transition:.25s;
    outline:none;
}

.otp-input:focus{
    border-color:#4F7CFF;
    box-shadow:0 0 0 5px rgba(79,124,255,.15);
    transform:translateY(-2px);
}

.otp-input.filled{
    border-color:#4F7CFF;
    background:#F8FBFF;
}

.otp-actions{
    text-align:center;
    margin-top:10px;
    color:#6B7280;
    font-size:15px;
}

.link-btn{
    border:none;
    background:none;
    color:#4F7CFF;
    font-weight:600;
    cursor:pointer;
}

/*==========================================================
INPUT BOX
==========================================================*/

.input-box{

    position:relative;

    display:flex;

    align-items:center;

}

.input-box i:first-child{

    position:absolute;

    left:20px;

    color:#98A2B3;

    font-size:18px;

    transition:.30s;

}

.input-box input,
.input-box select{

    width:100%;

    height:58px;

    padding:0 55px;

    border-radius:16px;

    border:1px solid #D0D5DD;

    background:#fff;

    color:#101828;

    font-size:15px;

    transition:.30s;

    outline:none;

}

.input-box input::placeholder{

    color:#98A2B3;

}

.input-box input:focus,
.input-box select:focus{

    border-color:#4F7CFF;

    box-shadow:

    0 0 0 4px rgba(79,124,255,.12);

}

.input-box input:focus+i{

    color:#4F7CFF;

}


/*==========================================================
PASSWORD
==========================================================*/

.password-box{

    position:relative;

}

.toggle-password{

    position:absolute;

    right:18px;

    width:38px;

    height:38px;

    border:none;

    background:transparent;

    color:#98A2B3;

    cursor:pointer;

    transition:.30s;

}

.toggle-password:hover{

    color:#4F7CFF;

}


/*==========================================================
PASSWORD STRENGTH
==========================================================*/

.password-strength{

    margin-top:12px;

}

.strength-bar{

    width:100%;

    height:8px;

    background:#EEF2F6;

    border-radius:50px;

    overflow:hidden;

}

#strengthFill{

    display:block;

    width:0;

    height:100%;

    background:
    linear-gradient(90deg,#F04438,#F79009,#12B76A);

    transition:.30s;

}

#strengthText{

    display:block;

    margin-top:8px;

    font-size:13px;

    color:#667085;

}


/*==========================================================
ERRORS
==========================================================*/

.field-error{

    display:block;

    min-height:18px;

    margin-top:6px;

    color:#F04438;

    font-size:13px;

}


/*==========================================================
REMEMBER
==========================================================*/

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

    gap:15px;

}

.remember-me{

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    font-size:14px;

    color:#344054;

}

.remember-me input{

    width:18px;

    height:18px;

    accent-color:#4F7CFF;

}

.forgot-password{

    text-decoration:none;

    color:#4F7CFF;

    font-size:14px;

    font-weight:600;

}

.forgot-password:hover{

    text-decoration:underline;

}


/*==========================================================
TERMS
==========================================================*/

.terms-box{

    margin:26px 0;

}

.terms-box label{

    display:flex;

    align-items:flex-start;

    gap:12px;

    cursor:pointer;

    color:#667085;

    line-height:1.7;

    font-size:14px;

}

.terms-box input{

    width:18px;

    height:18px;

    margin-top:2px;

    accent-color:#4F7CFF;

}

.terms-box a{

    color:#4F7CFF;

    text-decoration:none;

    font-weight:600;

}

.terms-box a:hover{

    text-decoration:underline;

}


/*==========================================================
BUTTON STATES
==========================================================*/

.primary-btn:disabled{

    opacity:.65;

    cursor:not-allowed;

    transform:none;

}

.primary-btn.loading{

    pointer-events:none;

}

.primary-btn.loading::after{

    content:"";

    width:18px;

    height:18px;

    border:2px solid rgba(255,255,255,.4);

    border-top-color:#fff;

    border-radius:50%;

    animation:spin .8s linear infinite;

    margin-left:12px;

}


/*==========================================================
LOGIN BENEFITS
==========================================================*/

.login-benefits{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

    margin-top:30px;

}

.login-benefits div{

    background:#fff;

    border:1px solid #EEF2F6;

    border-radius:16px;

    padding:16px;

    text-align:center;

    font-size:13px;

    color:#667085;

    box-shadow:var(--shadow-sm);

}

.login-benefits i{

    display:block;

    font-size:22px;

    color:#4F7CFF;

    margin-bottom:10px;

}

/*==========================================================
ACCOUNT TYPE
==========================================================*/

.account-selection{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

    margin-top:20px;

}

.account-card.selected{

    border:2px solid var(--primary);

    box-shadow:0 20px 60px rgba(79,70,229,.25);

    transform:translateY(-6px);

}

.account-option{

    cursor:pointer;

    display:block;

}

.account-option input{

    display:none;

}

.account-card{

    position:relative;

    background:#fff;

    border:2px solid #E4E7EC;

    border-radius:24px;

    padding:28px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    height:100%;

}

.account-option:hover .account-card{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.account-option input:checked+.account-card{

    border-color:#4F7CFF;

    box-shadow:

    0 0 0 4px rgba(79,124,255,.12),

    var(--shadow-md);

}

.account-card.featured{

    border-color:#18C8FF;

}

.recommended-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:

    linear-gradient(135deg,#5B5CFF,#18C8FF);

    color:#fff;

    padding:6px 12px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

}

.account-header{

    display:flex;

    gap:18px;

    align-items:center;

    margin-bottom:22px;

}

.account-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.account-icon.personal{

    background:

    linear-gradient(135deg,#5B5CFF,#18C8FF);

}

.account-icon.business{

    background:

    linear-gradient(135deg,#101828,#344054);

}

.account-header h3{

    margin:0;

    font-size:22px;

    color:#101828;

    font-weight:800;

}

.account-header span{

    color:#667085;

    font-size:14px;

}

.account-description{

    color:#667085;

    line-height:1.8;

    margin-bottom:22px;

}

.account-features{

    display:grid;

    gap:12px;

}

.account-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#344054;

    font-size:14px;

}

.account-features i{

    color:#12B76A;

}


/*==========================================================
GOAL
==========================================================*/

.goal-options{

    display:grid;

    gap:18px;

    margin-top:25px;

}

.goal-option{

    display:block;

    cursor:pointer;

}

.goal-option input{

    display:none;

}

.goal-card{

    position:relative;

    display:flex;

    gap:20px;

    align-items:center;

    background:#fff;

    border:2px solid #E4E7EC;

    border-radius:22px;

    padding:24px;

    transition:.30s;

    box-shadow:var(--shadow-sm);

}

.goal-option:hover .goal-card{

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.goal-option input:checked+.goal-card{

    border-color:#4F7CFF;

    box-shadow:

    0 0 0 4px rgba(79,124,255,.12),

    var(--shadow-md);

}

.goal-card.featured{

    border-color:#18C8FF;

}

.goal-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:

    linear-gradient(135deg,#5B5CFF,#18C8FF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.goal-content{

    flex:1;

}

.goal-content h3{

    margin:0 0 8px;

    color:#101828;

    font-size:22px;

    font-weight:800;

}

.goal-content p{

    margin:0;

    color:#667085;

    line-height:1.7;

}

.recommended{

    position:absolute;

    top:18px;

    right:18px;

    background:

    linear-gradient(135deg,#12B76A,#18C8FF);

    color:#fff;

    padding:6px 12px;

    border-radius:50px;

    font-size:11px;

    font-weight:700;

}

.screen-note{

    margin-top:24px;

    text-align:center;

    color:#667085;

    font-size:14px;

}

/*==========================================================
BUSINESS SCREEN
==========================================================*/

#businessForm{

    margin-top:20px;

}

#businessForm .form-group{

    margin-bottom:22px;

}

#businessForm select{

    cursor:pointer;

}


/*==========================================================
SUCCESS SCREEN
==========================================================*/

.success-wrapper{

    text-align:center;

    padding:10px 0 30px;

}

.success-icon{

    display:flex;

    justify-content:center;

    margin-bottom:30px;

}

.success-circle{

    width:120px;

    height:120px;

    border-radius:50%;

    background:
    linear-gradient(135deg,#12B76A,#18C8FF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:56px;

    box-shadow:
    0 25px 60px rgba(18,183,106,.35);

    animation:successPulse 2s infinite;

}

.success-wrapper h2{

    font-size:36px;

    font-weight:800;

    color:#101828;

    margin-bottom:12px;

}

.success-wrapper>p{

    color:#667085;

    line-height:1.8;

    max-width:520px;

    margin:0 auto 40px;

}


/*==========================================================
SUCCESS FEATURES
==========================================================*/

.success-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:35px;

}

.success-card{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:22px;

    background:#fff;

    border-radius:20px;

    border:1px solid #EEF2F6;

    box-shadow:var(--shadow-sm);

}

.success-card i{

    width:56px;

    height:56px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    color:#fff;

    font-size:22px;

}

.success-card strong{

    display:block;

    margin-bottom:6px;

    font-size:16px;

    color:#101828;

}

.success-card span{

    color:#667085;

    font-size:14px;

    line-height:1.6;

}


/*==========================================================
PROFILE PROGRESS
==========================================================*/

.profile-progress-card{

    background:#fff;

    border-radius:22px;

    padding:25px;

    border:1px solid #EEF2F6;

    box-shadow:var(--shadow-sm);

    margin-bottom:30px;

}

.profile-progress-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:14px;

}

.profile-progress-top span{

    color:#344054;

    font-weight:600;

}

.profile-progress-top strong{

    color:#4F7CFF;

    font-size:18px;

}

.profile-progress{

    width:100%;

    height:10px;

    background:#EEF2F6;

    border-radius:100px;

    overflow:hidden;

    margin-bottom:12px;

}

.profile-progress-fill{

    height:100%;

    width:80%;

    background:
    linear-gradient(90deg,#5B5CFF,#18C8FF);

    border-radius:100px;

}

.profile-progress-card small{

    color:#667085;

    line-height:1.6;

}


/*==========================================================
FOOTER
==========================================================*/

.auth-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    padding:30px 60px;

    border-top:1px solid #EEF2F6;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

}

.auth-back-btn{

    height:52px;

    padding:0 24px;

    border:none;

    border-radius:14px;

    background:#F8FAFC;

    color:#344054;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

}

.auth-back-btn:hover{

    background:#EEF2F6;

}

.auth-next-btn{

    height:52px;

    padding:0 28px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(135deg,#5B5CFF,#18C8FF);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

    box-shadow:
    0 12px 30px rgba(91,92,255,.28);

}

.auth-next-btn:hover{

    transform:translateY(-2px);

}


/*==========================================================
LOADING
==========================================================*/

.auth-loading{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:20px;

    background:rgba(15,23,42,.70);

    backdrop-filter:blur(12px);

    z-index:9999999;

}

.auth-loading.active{

    display:flex;

}

.auth-loading span{

    color:#fff;

    font-size:16px;

    font-weight:600;

}

/*==========================================================
ANIMATIONS
==========================================================*/

@keyframes authFade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes screenFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes successPulse{

    0%{

        transform:scale(1);

        box-shadow:
        0 20px 45px rgba(18,183,106,.30);

    }

    50%{

        transform:scale(1.06);

        box-shadow:
        0 30px 70px rgba(18,183,106,.45);

    }

    100%{

        transform:scale(1);

        box-shadow:
        0 20px 45px rgba(18,183,106,.30);

    }

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes floatOrb{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-25px);

    }

}

.orb1{

    animation:floatOrb 7s ease-in-out infinite;

}

.orb2{

    animation:floatOrb 9s ease-in-out infinite;

}

.orb3{

    animation:floatOrb 11s ease-in-out infinite;

}


/*==========================================================
UTILITY
==========================================================*/

.hidden{

    display:none !important;

}

.opacity-0{

    opacity:0;

}

.pointer-none{

    pointer-events:none;

}


/*==========================================================
TABLET
==========================================================*/

@media(max-width:991px){

    .auth-window{

        max-width:92%;

    }

    .auth-header{

        padding:40px 35px 25px;

    }

    .auth-progress{

        padding:0 35px 20px;

    }

    .auth-screens{

        padding:0 35px;

    }

    .auth-footer{

        padding:25px 35px;

    }

    .account-selection{

        grid-template-columns:1fr;

    }

    .welcome-features{

        grid-template-columns:1fr;

    }

    .success-features{

        grid-template-columns:1fr;

    }

    .login-benefits{

        grid-template-columns:1fr;

    }

}


/*==========================================================
MOBILE
==========================================================*/

@media(max-width:768px){

    .auth-modal{

        padding:15px;

    }

    .auth-window{

        width:100%;

        max-height:95vh;

        border-radius:24px;

    }

    .auth-header{

        padding:28px 22px 18px;

    }

    .auth-progress{

        padding:0 22px 18px;

    }

    .auth-screens{

        padding:0 22px;

        min-height:auto;

    }

    .auth-footer{

        padding:20px;

        flex-direction:column-reverse;

    }

    .auth-back-btn,

    .auth-next-btn{

        width:100%;

    }

    .welcome-hero h2{

        font-size:28px;

    }

    .screen-top h2{

        font-size:28px;

    }

    .auth-header h2{

        font-size:28px;

    }

    .welcome-stats{

        grid-template-columns:1fr;

    }

    .goal-card{

        flex-direction:column;

        text-align:center;

    }

    .account-header{

        flex-direction:column;

        text-align:center;

    }

    .success-wrapper h2{

        font-size:30px;

    }

}


/*==========================================================
SMALL MOBILE
==========================================================*/

@media(max-width:576px){

    .auth-logo{

        font-size:34px;

    }

    .auth-badge{

        font-size:11px;

    }

    .screen-icon{

        width:65px;

        height:65px;

        font-size:28px;

    }

    .icon-circle{

        width:85px;

        height:85px;

        font-size:36px;

    }

    .feature-card{

        flex-direction:column;

        text-align:center;

    }

    .goal-icon{

        width:60px;

        height:60px;

        font-size:24px;

    }

    .account-icon{

        width:60px;

        height:60px;

        font-size:24px;

    }

    .success-circle{

        width:90px;

        height:90px;

        font-size:42px;

    }

    .profile-progress-card{

        padding:18px;

    }

}


/*==========================================================
END
==========================================================*/