* { box-sizing: border-box; margin: 0; padding: 0; }

        html, body {
            height: 100%;
            background: #f0f2f8;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .login-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 15px;
        }

        .login-card {
            display: flex;
            width: 100%;
            max-width: 900px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }

        /* ---- Left Panel ---- */
        .login-left {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #5369f8;
            margin-bottom: 40px;
        }

        .login-welcome {
            font-size: 1.15rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
        }

        .login-subtitle {
            color: #9aa0b4;
            font-size: 0.9rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            color: #444;
            margin-bottom: 6px;
        }

        .form-control {
            border: 1.5px solid #d8dce6;
            border-radius: 6px;
            height: 44px;
            font-size: 0.9rem;
            color: #333;
            transition: border-color 0.2s;
        }

        .form-control:focus {
            border-color: #5369f8;
            box-shadow: 0 0 0 3px rgba(83,105,248,0.12);
        }

        .form-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .btn-login {
            background-color: #5369f8;
            border: none;
            color: #fff;
            padding: 10px 28px;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-login:hover {
            background-color: #3a52e8;
        }

        .forgot-link {
            color: #5369f8;
            font-size: 0.875rem;
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        .register-text {
            text-align: center;
            margin-top: 32px;
            font-size: 0.875rem;
            color: #9aa0b4;
        }

        .register-text a {
            color: #5369f8;
            text-decoration: none;
            font-weight: 500;
        }

        .register-text a:hover { text-decoration: underline; }

        /* ---- Right Panel ---- */
        .login-right {
            width: 420px;
            background: linear-gradient(135deg, #6b1a3a 0%, #3b0a5a 40%, #2a0845 70%, #1a0535 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .login-right::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(180,60,100,0.35) 0%, transparent 70%);
            border-radius: 50%;
        }

        .login-right::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(120,40,180,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            padding: 36px 32px;
            backdrop-filter: blur(6px);
        }

        .testimonial-quote-icon {
            font-size: 4rem;
            line-height: 1;
            color: rgba(255,255,255,0.25);
            font-family: Georgia, serif;
            margin-bottom: 8px;
        }

        .testimonial p.quote {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.92);
            line-height: 1.75;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            letter-spacing: 3px;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .author-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
        }

        .author-role {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
        }

        /* ---- Login clock ---- */
        .login-clock {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 40px;
        }

        .login-clock__label {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 6px;
        }

        .login-clock__time {
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.06em;
            font-variant-numeric: tabular-nums;
        }

        .login-clock__date {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.65);
            margin-top: 4px;
        }

        .alert-error {
            background: #fff0f0;
            border: 1px solid #f5c2c2;
            color: #c0392b;
            border-radius: 6px;
            padding: 10px 14px;
            font-size: 0.875rem;
            margin-bottom: 20px;
        }


