     /* ══ LOGIN PAGE STYLES ═════════════════════════════════════════════════ */
        body {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(27,10,50,1) 0%, rgba(14,6,18,1) 50%, rgba(25,8,45,1) 100%);
            position: relative;
            overflow: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(107,33,232,0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatUp 4s ease-in-out infinite;
        }

        body::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatUp 6s ease-in-out infinite reverse;
        }

        .login-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 480px;
            padding: 40px 30px;
            margin: 20px;
        }

        .login-card {
            background: rgba(28,16,40,0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(107,33,232,0.3);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 
                0 8px 32px rgba(107,33,232,0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
            animation: panelIn 0.6s var(--ease);
        }

        .login-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .login-logo {
            font-size: 60px;
            margin-bottom: 15px;
            animation: popIn 0.8s var(--ease);
            display: inline-block;
        }

        .login-title {
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .login-title em {
            color: var(--P);
            font-style: italic;
            font-weight: 600;
        }

        .login-subtitle {
            font-size: 14px;
            color: var(--grey);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--grey);
        }

        .form-input {
            background: rgba(14,6,18,0.5);
            border: 1px solid rgba(107,33,232,0.3);
            border-radius: 12px;
            padding: 14px 16px;
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s var(--ease);
        }

        .form-input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-input:focus {
            background: rgba(14,6,18,0.8);
            border-color: var(--P);
            box-shadow: 0 0 20px rgba(107,33,232,0.3);
        }

        .form-input.error {
            border-color: var(--red);
            background: rgba(220,38,38,0.1);
        }

        .form-error {
            font-size: 12px;
            color: var(--red);
            margin-top: -4px;
            display: none;
        }

        .form-input.error ~ .form-error {
            display: block;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .form-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
            accent-color: var(--P);
        }

        .form-checkbox label {
            cursor: pointer;
            color: var(--grey);
            transition: color 0.3s var(--ease);
        }

        .form-checkbox:hover label {
            color: var(--P3);
        }

        .form-link {
            color: var(--grey);
            text-decoration: none;
            transition: all 0.3s var(--ease);
            position: relative;
        }

        .form-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--P);
            transition: width 0.3s var(--ease);
        }

        .form-link:hover {
            color: var(--P);
        }

        .form-link:hover::after {
            width: 100%;
        }

        .login-btn {
            background: linear-gradient(135deg, var(--P) 0%, var(--P2) 100%);
            color: var(--white);
            border: none;
            border-radius: 12px;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            box-shadow: 0 4px 20px rgba(107,33,232,0.3);
            position: relative;
            overflow: hidden;
            margin-top: 10px;
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.3s var(--ease);
            z-index: -1;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(107,33,232,0.5);
        }

        .login-btn:hover::before {
            left: 100%;
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .login-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 30px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(107,33,232,0.3), transparent);
        }

        .divider-text {
            font-size: 12px;
            color: var(--grey);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .login-footer {
            text-align: center;
            margin-top: 30px;
            font-size: 13px;
            color: var(--grey);
        }

        .login-footer a {
            color: var(--P);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s var(--ease);
        }

        .login-footer a:hover {
            color: var(--P3);
        }

        .alert {
            padding: 14px 16px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 13px;
            display: none;
            animation: slideDown 0.3s var(--ease);
        }

        .alert.show {
            display: block;
        }

        .alert-success {
            background: rgba(22,163,74,0.15);
            border: 1px solid rgba(22,163,74,0.3);
            color: var(--green);
        }

        .alert-error {
            background: rgba(220,38,38,0.15);
            border: 1px solid rgba(220,38,38,0.3);
            color: var(--red);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 40px 20px;
            }

            .login-title {
                font-size: 28px;
            }

            .form-input {
                font-size: 14px;
            }

            .login-btn {
                font-size: 14px;
            }
        }