/* WinJob — Premium authentication experience */
.auth-page {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 200px 0 70px;
}

.auth-page::before,
.auth-page::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .16;
}

.auth-page::before {
    top: -180px;
    right: -120px;
    background: #fd5631;
}

.auth-page::after {
    bottom: -220px;
    left: -120px;
    background: #4312f4;
}

.auth-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    background: rgba(18, 16, 25, .78);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .04);
    backdrop-filter: blur(24px);
}

.auth-visual {
    position: relative;
    min-height: 720px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(circle at 20% 15%, rgba(253, 86, 49, .12), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(67, 18, 244, .15), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 60%);
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.auth-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 24px;
    pointer-events: none;
}

.auth-kicker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.auth-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fd5631;
    box-shadow: 0 0 18px rgba(253, 86, 49, .8);
}

.auth-visual h1 {
    position: relative;
    z-index: 2;
    margin: 10px 0 0;
    color: #fff;
    font-family: var(--fi-font-vazir-bold);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.55;
}

.auth-visual h1 span {
    background: var(--fi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-visual p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .48);
    line-height: 2;
}

.auth-art {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    margin: 0 auto;
    filter: drop-shadow(0 24px 35px rgba(0, 0, 0, .22));
}

.auth-switch {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .48);
    font-size: .9rem;
}

.auth-switch a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    margin-right: 5px;
}

.auth-switch a:hover {
    color: #fd5631 !important;
}

.auth-form {
    padding: 54px clamp(30px, 5vw, 68px);
    background: rgba(8, 8, 12, .18);
}

.auth-form-head {
    margin-bottom: 28px;
}

.auth-form-head .eyebrow {
    color: #fd5631;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.auth-form-head h2 {
    margin: 8px 0 7px;
    color: #fff;
    font-size: 1.8rem;
}

.auth-form-head p {
    margin: 0;
    color: rgba(255, 255, 255, .43);
}

.auth-social {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-social .btn,
.auth-choice .btn {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .82);
    border-radius: 14px;
    transition: .25s ease;
}

.auth-social .btn:hover,
.auth-choice .btn:hover {
    transform: translateY(-2px);
    border-color: rgba(253, 86, 49, .55) !important;
    background: rgba(253, 86, 49, .07);
    color: #fff;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 20px 0 22px;
    color: rgba(255, 255, 255, .28);
    font-size: .78rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10));
}

.auth-divider::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .10), transparent);
}

.auth-form .form-label,
.auth-form .form-label-light {
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 600;
}

.auth-form .form-control,
.auth-form select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .045);
    color: #fff;
    box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, .25);
}

.auth-form .form-control:focus,
.auth-form select:focus {
    border-color: rgba(253, 86, 49, .75);
    box-shadow: 0 0 0 4px rgba(253, 86, 49, .09);
    background: rgba(255, 255, 255, .06);
}

.auth-form .btn-primary {
    min-height: 55px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #fd5631, #ff704b 45%, #7b3df2);
    box-shadow: 0 12px 30px rgba(253, 86, 49, .18);
    font-weight: 700;
    transition: .25s ease;
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(253, 86, 49, .24);
}

.auth-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.auth-choice .btn {
    font-size: .84rem;
}

.auth-mini-link {
    color: rgba(255, 255, 255, .55) !important;
    text-decoration: none;
    font-size: .78rem;
}

.auth-mini-link:hover {
    color: #fff !important;
}

.auth-terms {
    color: rgba(255, 255, 255, .48);
    font-size: .78rem;
    line-height: 1.9;
}

.auth-terms a {
    color: #fff;
}

.auth-form .password-toggle {
    position: relative;
}

.auth-form .password-toggle .form-control {
    padding-left: 52px;
}

.auth-form .password-toggle-btn {
    left: 13px;
    right: auto;
}

.auth-form .text-danger {
    font-size: .75rem;
}

.auth-form .alert {
    border-radius: 13px;
}

@media (max-width: 991.98px) {
    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .auth-visual {
        min-height: auto;
        padding: 34px 34px 20px;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .auth-visual p {
        display: none;
    }

    .auth-art {
        max-width: 410px;
        margin: 10px auto 0;
    }

    .auth-switch {
        margin-top: 8px;
    }

    .page-wrapper {
        padding: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .auth-page {
        padding: 150px 0 40px;
    }

    .auth-shell {
        width: min(100% - 20px, 720px);
        border-radius: 24px;
    }

    .auth-visual {
        padding: 26px 22px 14px;
    }

    .auth-visual h1 {
        font-size: 1.35rem;
    }

    .auth-form {
        padding: 32px 22px 28px;
    }

    .auth-social,
    .auth-choice {
        grid-template-columns: 1fr;
    }

    .auth-art {
        max-width: 330px;
    }

    .page-wrapper {
        padding: 0 !important;
    }
}
.page-wrapper {
        padding: 0 !important;
    }
