/*
|--------------------------------------------------------------------------
| AUTHENTICATION STYLES
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| AUTH BRANDING
|--------------------------------------------------------------------------
*/

.auth-brand {

    max-width:
        620px;
}

.auth-logo {

    width:
        90px;

    height:
        90px;

    object-fit:
        contain;

    margin-bottom:
        24px;
}

.auth-brand h1 {

    font-size:
        52px;

    font-weight:
        800;

    line-height:
        1.1;

    margin-bottom:
        18px;
}

.auth-brand p {

    font-size:
        18px;

    line-height:
        1.7;

    color:
        rgba(255,255,255,0.75);

    margin-bottom:
        48px;
}

/*
|--------------------------------------------------------------------------
| FEATURES
|--------------------------------------------------------------------------
*/

.auth-features {

    display:
        flex;

    flex-direction:
        column;

    gap:
        20px;
}

.feature-card {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        18px;

    padding:
        22px;

    border:
        1px solid rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.04);

    border-radius:
        22px;

    backdrop-filter:
        blur(12px);
}

.feature-icon {

    width:
        56px;

    height:
        56px;

    border-radius:
        18px;

    background:
        linear-gradient(
            135deg,
            rgba(99,102,241,1),
            rgba(79,70,229,1)
        );

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        white;

    font-size:
        22px;

    flex-shrink:
        0;
}

.feature-content h3 {

    font-size:
        18px;

    margin-bottom:
        8px;
}

.feature-content p {

    font-size:
        14px;

    line-height:
        1.6;

    color:
        rgba(255,255,255,0.7);
}

/*
|--------------------------------------------------------------------------
| AUTH CARD
|--------------------------------------------------------------------------
*/

.auth-card {

    position:
        relative;

    overflow:
        hidden;
}

.auth-card::before {

    content:
        '';

    position:
        absolute;

    top:
        -120px;

    right:
        -120px;

    width:
        220px;

    height:
        220px;

    background:
        rgba(79,70,229,0.08);

    border-radius:
        50%;
}

.auth-header {

    text-align:
        center;

    margin-bottom:
        32px;

    position:
        relative;

    z-index:
        1;
}

.auth-icon {

    width:
        82px;

    height:
        82px;

    margin:
        0 auto 20px;

    border-radius:
        24px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #4338ca
        );

    color:
        white;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        32px;

    box-shadow:
        0 20px 40px rgba(79,70,229,0.22);
}

.auth-header h2 {

    font-size:
        32px;

    font-weight:
        800;

    margin-bottom:
        10px;
}

.auth-header p {

    color:
        var(--text-light);

    line-height:
        1.6;
}

/*
|--------------------------------------------------------------------------
| FORM
|--------------------------------------------------------------------------
*/

.auth-form {

    position:
        relative;

    z-index:
        1;
}

.input-group {

    position:
        relative;
}

.input-group input {

    padding-left:
        52px;

    padding-right:
        52px;

    height:
        56px;

    background:
        #f8fafc;

    border:
        1px solid transparent;

    font-size:
        15px;
}

.input-group input:focus {

    background:
        white;
}

.input-icon {

    position:
        absolute;

    left:
        18px;

    top:
        50%;

    transform:
        translateY(-50%);

    color:
        var(--text-light);

    z-index:
        2;
}

.password-toggle {

    position:
        absolute;

    right:
        16px;

    top:
        50%;

    transform:
        translateY(-50%);

    border:
        none;

    background:
        transparent;

    color:
        var(--text-light);

    cursor:
        pointer;

    z-index:
        2;

    font-size:
        16px;
}

/*
|--------------------------------------------------------------------------
| OPTIONS
|--------------------------------------------------------------------------
*/

.auth-options {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin:
        20px 0 28px;
}

.remember-me {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    font-size:
        14px;

    color:
        var(--text-light);

    cursor:
        pointer;
}

.remember-me input {

    width:
        16px;

    height:
        16px;

    accent-color:
        var(--primary);
}

.forgot-password {

    color:
        var(--primary);

    font-size:
        14px;

    font-weight:
        600;
}

/*
|--------------------------------------------------------------------------
| SUBMIT BUTTON
|--------------------------------------------------------------------------
*/

.auth-submit {

    width:
        100%;

    height:
        58px;

    border:
        none;

    border-radius:
        18px;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #4338ca
        );

    color:
        white;

    font-size:
        15px;

    font-weight:
        700;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    cursor:
        pointer;

    transition:
        var(--transition);

    box-shadow:
        0 16px 32px rgba(79,70,229,0.18);
}

.auth-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 20px 38px rgba(79,70,229,0.24);
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.auth-footer {

    margin-top:
        28px;

    text-align:
        center;

    position:
        relative;

    z-index:
        1;
}

.auth-footer p {

    font-size:
        13px;

    color:
        var(--text-light);

    line-height:
        1.6;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .auth-right {

        padding:
            20px;
    }

    .auth-card {

        padding:
            30px 24px;
    }

    .auth-header h2 {

        font-size:
            28px;
    }

    .auth-options {

        flex-direction:
            column;

        align-items:
            flex-start;
    }
}