/* ===== AUTH PAGES (Register, Login, Forgot Password) ===== */

:root {
    --auth-primary-dark: #0b5d3b;
    --auth-primary-light: #6da98c;
    --auth-primary-mid: #338a5e;
    --auth-black: #000000;
    --auth-black-soft: #1a1a1a;
    --auth-white: #ffffff;
    --auth-gray-light: #f5f7fa;
    --auth-gray: #6c757d;
    --auth-gradient-primary: linear-gradient(135deg, #0b5d3b 0%, #338a5e 50%, #6da98c 100%);
    --auth-gradient-dark: linear-gradient(135deg, #000000 0%, #0b5d3b 100%);
    --auth-page-base-top: #071a12;
    --auth-page-base-mid: #10261c;
    --auth-page-base-bottom: #0b1d15;
    --auth-surface: linear-gradient(180deg, rgba(252, 254, 252, 0.92) 0%, rgba(245, 249, 246, 0.9) 100%);
    --auth-panel-shadow: 0 32px 72px rgba(1, 17, 10, 0.2);
    --auth-page-glow: rgba(11, 93, 59, 0.16);
    --auth-page-glow-soft: rgba(109, 169, 140, 0.12);
    --auth-page-pattern-opacity: 0.032;
    --auth-orb-primary: rgba(255, 255, 255, 0.06);
    --auth-orb-secondary: rgba(255, 255, 255, 0.045);
    --auth-container-border: rgba(228, 241, 233, 0.24);
    --auth-container-outline: rgba(255, 255, 255, 0.35);
    --auth-container-highlight: rgba(255, 255, 255, 0.3);
    --auth-form-surface: rgba(255, 255, 255, 0.9);
    --auth-form-accent-bar: linear-gradient(90deg, rgba(109, 169, 140, 0.18) 0%, #6da98c 18%, #0b5d3b 82%, rgba(4, 20, 13, 0.3) 100%);
    --auth-image-surface: linear-gradient(160deg, #13734f 0%, #0d5d40 42%, #093224 100%);
    --auth-image-overlay: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 54%);
    --auth-chip-surface: rgba(255, 255, 255, 0.12);
    --auth-chip-border: rgba(255, 255, 255, 0.2);
    --auth-chip-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ---- Body ---- */
body.auth-page {
    font-family: "Tajawal", "Inter", sans-serif;
    background: linear-gradient(135deg, var(--auth-page-base-top) 0%, var(--auth-page-base-mid) 48%, var(--auth-page-base-bottom) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 20px 32px;
    position: relative;
    overflow-x: clip;
    margin: 0;
}

body.auth-page::before,
body.auth-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body.auth-page::before {
    background: radial-gradient(circle at top right, var(--auth-page-glow) 0%, transparent 42%);
    z-index: 0;
}

body.auth-page::after {
    background: radial-gradient(circle at bottom left, var(--auth-page-glow-soft) 0%, transparent 36%);
    z-index: 0;
}

body.auth-page--login {
    --auth-page-base-top: #061a12;
    --auth-page-base-mid: #0e2b1f;
    --auth-page-base-bottom: #091b14;
    --auth-page-glow: rgba(138, 199, 170, 0.18);
    --auth-page-glow-soft: rgba(109, 169, 140, 0.14);
    --auth-page-pattern-opacity: 0.026;
    --auth-orb-primary: rgba(248, 255, 251, 0.1);
    --auth-orb-secondary: rgba(214, 236, 224, 0.08);
    --auth-surface: linear-gradient(180deg, rgba(252, 255, 253, 0.9) 0%, rgba(242, 248, 244, 0.86) 100%);
    --auth-panel-shadow: 0 42px 110px rgba(1, 17, 10, 0.28);
    --auth-container-border: rgba(214, 236, 224, 0.32);
    --auth-container-outline: rgba(255, 255, 255, 0.42);
    --auth-container-highlight: rgba(255, 255, 255, 0.38);
    --auth-form-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 246, 0.9) 100%);
    --auth-form-accent-bar: linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0%, #9bc7b1 14%, #6da98c 38%, #0b5d3b 82%, rgba(4, 20, 13, 0.35) 100%);
    --auth-image-surface: linear-gradient(160deg, #16845a 0%, #0f6847 45%, #0a3828 100%);
    --auth-image-overlay: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 56%);
    --auth-chip-surface: rgba(255, 255, 255, 0.14);
    --auth-chip-border: rgba(255, 255, 255, 0.24);
}

body.auth-page--register {
    --auth-page-base-top: #05160f;
    --auth-page-base-mid: #0d241a;
    --auth-page-base-bottom: #091a13;
    --auth-page-glow: rgba(11, 93, 59, 0.24);
    --auth-page-glow-soft: rgba(109, 169, 140, 0.2);
}

body.auth-page--forgot {
    --auth-page-base-top: #07140f;
    --auth-page-base-mid: #10211a;
    --auth-page-base-bottom: #0a1712;
    --auth-page-glow: rgba(11, 93, 59, 0.18);
    --auth-page-glow-soft: rgba(109, 169, 140, 0.16);
}

.auth-shell {
    width: 100%;
    position: relative;
    z-index: 10;
}

.auth-background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
    z-index: 1;
}

.auth-background-orb--primary {
    top: 120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--auth-orb-primary), transparent 70%);
}

.auth-background-orb--secondary {
    bottom: 40px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--auth-orb-secondary), transparent 72%);
}

/* ---- Geometric background ---- */
.auth-background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgb(11 93 59 / var(--auth-page-pattern-opacity)) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(11 93 59 / var(--auth-page-pattern-opacity)) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(11 93 59 / var(--auth-page-pattern-opacity)) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(11 93 59 / var(--auth-page-pattern-opacity)) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    z-index: 0;
    pointer-events: none;
}

/* ---- Main container ---- */
.auth-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--auth-surface);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    box-shadow: var(--auth-panel-shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    border: 1px solid var(--auth-container-border);
    box-shadow: inset 0 1px 0 var(--auth-container-highlight), var(--auth-panel-shadow);
}

.auth-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--auth-container-outline);
    pointer-events: none;
    opacity: 0.6;
}

/* ===== LEFT PANEL (Image/Brand side) ===== */
.auth-image-side {
    flex: 1.1;
    min-width: 300px;
    background: var(--auth-image-surface);
    padding: 56px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--auth-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-image-side::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--auth-image-overlay);
    animation: auth-rotate 28s linear infinite;
}

@keyframes auth-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.auth-image-side::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--auth-black);
}

.auth-image-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.auth-side-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--auth-chip-surface);
    border: 1px solid var(--auth-chip-border);
    color: var(--auth-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(12px);
    box-shadow: var(--auth-chip-shadow);
}

/* ---- Logo ---- */
.auth-academy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.18);
    padding: 15px 30px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.auth-logo-icon {
    font-size: 45px;
    color: var(--auth-white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.auth-logo-text {
    text-align: right;
}

.auth-logo-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-logo-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ---- Illustration ---- */
.auth-illustration-container {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.auth-main-illustration {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.auth-icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    animation: auth-pulse 3s infinite;
}

@keyframes auth-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 28px rgba(255, 255, 255, 0.24);
    }
}

.auth-icon-circle i {
    font-size: 60px;
    color: white;
}

.auth-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.auth-float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    animation: auth-float 6s infinite;
}

.auth-float-item:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.auth-float-item:nth-child(2) {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.auth-float-item:nth-child(3) {
    top: 20%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes auth-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.auth-image-side h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.auth-image-side>.auth-image-content>p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ---- Feature list ---- */
.auth-feature-list {
    text-align: right;
    margin-top: 40px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.auth-feature-item:hover {
    background: rgba(0, 0, 0, 0.28);
    transform: translateX(-6px);
}

.auth-feature-item i {
    font-size: 24px;
    color: var(--auth-white);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.auth-feature-text {
    font-weight: 500;
    font-size: 16px;
}

/* ---- Stats ---- */
.auth-stats-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.auth-stat-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.auth-stat-card:hover {
    background: rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.auth-stat-card i {
    font-size: 20px;
    color: var(--auth-primary-light);
}

.auth-stat-number {
    font-weight: 700;
    font-size: 18px;
}

.auth-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== RIGHT PANEL (Form side) ===== */
.auth-form-side {
    flex: 1;
    min-width: 350px;
    padding: 42px;
    background: var(--auth-form-surface);
    position: relative;
}

.auth-form-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--auth-form-accent-bar);
}

.auth-form-panel {
    max-width: 560px;
    margin: 0 auto;
    padding: 8px 0;
}

/* ---- Form header ---- */
.auth-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(51, 138, 94, 0.1);
    color: var(--auth-primary-dark);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(51, 138, 94, 0.14);
}

.auth-kicker i {
    font-size: 14px;
}

.auth-form-header h3 {
    color: var(--auth-black);
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-form-header h3 span {
    color: var(--auth-primary-mid);
    border-bottom: 3px solid var(--auth-primary-mid);
    padding-bottom: 5px;
}

.auth-form-header p {
    color: var(--auth-gray);
    font-size: 15px;
    line-height: 1.7;
}

.auth-form-header p a {
    color: var(--auth-primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.auth-form-header p a:hover {
    color: var(--auth-primary-light);
}

.auth-form-stack {
    display: grid;
    gap: 0;
}

.auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* ---- Form fields ---- */
.auth-form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form-group label,
.auth-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--auth-black);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.auth-error-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
}

.auth-error-message {
    color: red;
    font-size: 13px;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    right: 15px;
    color: var(--auth-primary-dark);
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.auth-form-side .form-control,
.auth-form-control {
    width: 100%;
    padding: 16px 50px 16px 15px;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    font-family: "Tajawal", "Inter", sans-serif;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.auth-form-control--password {
    padding-left: 82px;
}

.auth-form-side .form-control::placeholder,
.auth-form-control::placeholder {
    color: #94a3b8;
}

.auth-form-side .form-control:focus,
.auth-form-control:focus {
    border-color: var(--auth-primary-mid);
    outline: none;
    box-shadow: 0 0 0 4px rgba(51, 138, 94, 0.15);
    background: var(--auth-white);
    transform: translateY(-2px);
}

/* ---- Password toggle ---- */
.auth-password-toggle {
    position: absolute;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--auth-gray);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-password-toggle i {
    font-size: 18px;
}

.auth-password-toggle:hover {
    color: var(--auth-primary-dark);
}

.auth-input-group.is-password-visible .auth-password-toggle {
    color: var(--auth-primary-dark);
}

/* ---- Password strength ---- */
.auth-password-strength {
    margin-top: 8px;
    height: 5px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.auth-strength-bar {
    height: 100%;
    width: 0%;
    background: var(--auth-gradient-primary);
    transition: width 0.3s ease;
    border-radius: 5px;
}

.auth-strength-text {
    font-size: 12px;
    margin-top: 5px;
    color: var(--auth-gray);
}

/* ---- Terms checkbox ---- */
.auth-terms-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.auth-terms-check input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--auth-primary-dark);
}

.auth-terms-check label {
    color: var(--auth-gray);
    font-size: 14px;
    flex: 1;
}

.auth-terms-check label a {
    color: var(--auth-primary-dark);
    text-decoration: none;
    font-weight: 700;
}

.auth-terms-check label a:hover {
    color: var(--auth-primary-light);
}

/* ---- Submit button ---- */
.auth-btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--auth-gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-family: "Tajawal", "Inter", sans-serif;
}

.auth-btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-btn-submit:hover::before {
    left: 100%;
}

.auth-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(11, 93, 59, 0.4);
    color: white;
}

.auth-btn-submit:active {
    transform: translateY(0);
}

.auth-btn-submit i {
    font-size: 18px;
}

/* ---- Alert messages ---- */
.auth-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: auth-slideIn 0.4s ease;
}

@keyframes auth-slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-alert-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #0b5d3b;
    border: 2px solid #338a5e;
}

.auth-alert-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #b71c1c;
    border: 2px solid #d32f2f;
}

/* ---- Form errors (Symfony) ---- */
.auth-form-side .invalid-feedback,
.auth-form-side .form-error-message {
    color: #b71c1c;
    font-size: 13px;
    margin-top: 5px;
}

.auth-context-note,
.auth-support-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(51, 138, 94, 0.08), rgba(109, 169, 140, 0.12));
    border: 1px solid rgba(51, 138, 94, 0.15);
    color: #35514b;
    font-size: 14px;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.auth-context-note i,
.auth-support-note i {
    color: var(--auth-primary-dark);
    font-size: 18px;
    margin-top: 2px;
}

.auth-form-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: -4px 0 24px;
    color: var(--auth-gray);
    font-size: 14px;
}

.auth-form-meta p {
    margin: 0;
}

.auth-text-link {
    color: var(--auth-primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.auth-text-link:hover {
    color: var(--auth-primary-light);
}

/* ---- Links section ---- */
.auth-links {
    text-align: center;
    margin-top: 10px;
    color: var(--auth-gray);
    font-size: 14px;
    line-height: 1.7;
}

.auth-links a {
    color: var(--auth-primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: var(--auth-primary-light);
}

.auth-links--stack {
    display: grid;
    gap: 4px;
}

.auth-links--split {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.auth-page--register .auth-image-side::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 52%);
}

.auth-page--register .auth-feature-item,
.auth-page--register .auth-side-badge {
    background: rgba(0, 0, 0, 0.22);
}

.auth-page--forgot .auth-image-side::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 48%);
}

.auth-page--forgot .auth-feature-item,
.auth-page--forgot .auth-side-badge {
    background: rgba(0, 0, 0, 0.18);
}

.auth-form-footer-note {
    max-width: 560px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body.auth-page {
        padding: 88px 14px 24px;
    }

    .auth-container {
        flex-direction: column;
        border-radius: 30px;
    }

    .auth-image-side {
        padding: 40px 25px;
    }

    .auth-form-side {
        padding: 32px 22px;
        min-width: auto;
    }

    .auth-form-grid,
    .auth-form-meta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .auth-form-header h3 {
        font-size: 28px;
    }

    .auth-icon-circle {
        width: 100px;
        height: 100px;
    }

    .auth-icon-circle i {
        font-size: 50px;
    }

    .auth-stats-container {
        flex-direction: column;
        align-items: center;
    }

    .auth-stat-card {
        width: 100%;
        justify-content: center;
    }
}