/* =========================================
   Student Violation Tracking System
   Login Page – Modern Dark UI
   ========================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg-main: #020617;               /* main background */
    --bg-overlay: rgba(15, 23, 42, 0.85);
    --bg-card: rgba(15, 23, 42, 0.94);
    --bg-card-soft: rgba(30, 41, 59, 0.9);
    --border-soft: rgba(148, 163, 184, 0.35);
    --border-strong: rgba(148, 163, 184, 0.6);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --text-soft: #6b7280;
    --accent: #38bdf8;                /* cyan */
    --accent-strong: #0ea5e9;
    --accent-soft: rgba(56, 189, 248, 0.2);
    --danger: #fb7185;
    --success: #22c55e;
    --radius-lg: 24px;
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.7);
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.85);
    --transition-fast: 0.18s ease-out;
    --transition-med: 0.26s ease-out;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- GLOBAL ---------- */
html,
body {
    height: 100%;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    color: var(--text-main);
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top, #020617 0%, #020617 40%, #020617 100%);
}

/* ---------- BACKGROUND IMAGE + OVERLAY ---------- */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.bg-image .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* brighten the image a bit so the school is visible */
    filter: brightness(0.55) saturate(1.1);
    transform: scale(1.02);
}

/* Animated dark overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    /* lighter, more transparent overlay */
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%),
        radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.12), transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.82));
    mix-blend-mode: normal;
    animation: bgPulse 14s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

@keyframes bgPulse {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.01);
    }
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    padding: 14px 32px;
    gap: 14px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.top-bar img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(248, 250, 252, 0.1), transparent 60%);
    padding: 6px;
}

.top-bar h1 {
    color: #f9fafb;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    opacity: 0.95;
}

/* ---------- MAIN LAYOUT ---------- */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    gap: 40px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 96px);
}

/* ---------- LEFT: WELCOME / COPY ---------- */
.welcome-text {
    color: var(--text-main);
    max-width: 560px;
    animation: slideInLeft 0.7s ease-out;
    flex: 1;
    min-width: 0;
}

/* Main heading */
.welcome-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: 0.025em;
    color: #f9fafb;
    text-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

/* First line description */
.welcome-text .welcome-lead {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 4px;
    color: rgba(226, 232, 240, 0.96);
    letter-spacing: 0.01em;
}

/* Second line description */
.welcome-text .welcome-sub {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(148, 163, 184, 0.96);
}

/* Highlights container */
.school-highlights {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.school-highlights .highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.96));
    padding: 12px 16px;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(75, 85, 99, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.school-highlights .highlight:hover {
    transform: translateX(4px) translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.95);
}

.school-highlights .highlight > span {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.highlight-content strong {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 600;
}

.highlight-content span {
    color: #f9fafb;              /* or rgba(241,245,249,0.96) */
    font-size: 13px;
    line-height: 1.45;
}

/* Contact links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast), text-decoration var(--transition-fast), transform var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-strong);
    text-decoration: underline;
    transform: translateY(-1px);
}

.contact-link i {
    font-size: 11px;
    width: 14px;
}

/* ---------- LOGIN CARD ---------- */
.login-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    max-width: 420px;
    width: 100%;
    padding: 34px 30px 30px;
    text-align: left;
    animation: fadeInUp 0.7s ease-out;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
    flex-shrink: 0;
    min-width: 0;
}

.login-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-soft);
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-header img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), transparent 60%);
    padding: 6px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 4px;
}

.login-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- FORM ELEMENTS ---------- */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input {
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.85);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
    width: 100%;
    min-height: 44px;
}

.form-group input:focus {
    border-color: var(--accent-strong);
    background: rgba(15, 23, 42, 0.98);
    outline: none;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 0 20px rgba(8, 47, 73, 0.7);
    transform: translateY(-1px);
}

input::placeholder {
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: 0.01em;
    font-size: 13px;
}
input:focus::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

/* Password wrapper & toggle */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 44px !important;
}

.toggle-password-icon,
.toggle-password-reset-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(148, 163, 184, 0.95);
    opacity: 0.85;
}

.toggle-password-icon:hover,
.toggle-password-reset-icon:hover {
    opacity: 1;
    color: var(--accent-strong);
    transform: translateY(-50%) scale(1.05);
}

/* ---------- PRIMARY BUTTON ---------- */
.login-card button {
    width: 100%;
    background-image: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #f9fafb;
    padding: 11px 12px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform var(--transition-med), box-shadow var(--transition-med), filter var(--transition-med), opacity var(--transition-fast);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.login-card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45);
    filter: brightness(1.04);
}

.login-card button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.9);
}

/* ---------- FOOTER LINKS ---------- */
.login-footer {
    margin-top: 16px;
    text-align: center;
}

.login-footer a {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 2px 4px;
    transition: color var(--transition-fast), text-decoration var(--transition-fast), transform var(--transition-fast);
}

.login-footer a:hover {
    text-decoration: underline;
    color: var(--accent-strong);
    transform: translateY(-1px);
}

/* ---------- ERROR TEXT ---------- */
.error-text {
    display: block;
    color: var(--danger);
    font-size: 11px;
    margin-top: 3px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.error-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- MODAL BASE ---------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.88);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: var(--bg-card-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    padding: 0;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    color: var(--text-main);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px 16px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.9);
    background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: #e0f2fe;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.03em;
}

.close {
    color: rgba(148, 163, 184, 0.95);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all var(--transition-med);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.close:hover {
    color: #f9fafb;
    background: rgba(51, 65, 85, 0.9);
    transform: rotate(90deg) scale(1.03);
}

.modal-body {
    padding: 24px 26px 26px;
}

/* Step indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 26px;
    position: relative;
    gap: 24px;
}

.step {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(75, 85, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-soft);
    position: relative;
    z-index: 2;
    transition: all 0.24s ease;
}

.step.active {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    border-color: #22c55e;
    color: #f9fafb;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.55);
    transform: scale(1.05);
}

.step.completed {
    background: #16a34a;
    border-color: #16a34a;
    color: #f9fafb;
}

.step-line {
    position: absolute;
    top: 50%;
    width: 44%;
    height: 2px;
    background: rgba(55, 65, 81, 0.7);
    transform: translateY(-50%);
    z-index: 1;
    transition: background 0.24s ease;
}

.step-line.left {
    left: 6%;
}
.step-line.right {
    right: 6%;
}

/* Forgot steps */
.forgot-step {
    display: none;
    animation: stepFadeIn 0.35s ease-out;
}
.forgot-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-description {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

/* Modal form groups */
.modal-body .form-group {
    margin-bottom: 16px;
}
.modal-body .form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 6px;
    display: block;
}
.modal-body .form-group input {
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.9);
    background: rgba(15, 23, 42, 0.96);
    color: var(--text-main);
    font-size: 13px;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    min-height: 42px;
}
.modal-body .form-group input:focus {
    border-color: var(--accent-strong);
    background: rgba(15, 23, 42, 1);
    outline: none;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}
.modal-body .form-group input::placeholder {
    color: var(--text-soft);
    font-size: 12px;
}

/* Verification text */
.verification-info {
    text-align: center;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--text-muted) !important;
}
#reset-email-display {
    color: var(--accent-strong) !important;
    font-weight: 600;
}

/* Code input */
#reset_code {
    text-align: center;
    font-size: 18px !important;
    font-weight: 600;
    letter-spacing: 8px;
    padding: 12px 18px !important;
    background: rgba(15, 23, 42, 0.96) !important;
    border: 1px solid rgba(56, 189, 248, 0.5) !important;
}
#reset_code:focus {
    background: rgba(8, 47, 73, 0.9) !important;
}

/* Buttons in modal */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background-image: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #f9fafb;
    border: none;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all var(--transition-med);
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.96);
    color: var(--text-main);
    border: 1px solid rgba(75, 85, 99, 0.9);
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    transition: all var(--transition-fast);
    width: 100%;
    backdrop-filter: blur(10px);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-secondary:hover:not(:disabled) {
    background: rgba(30, 64, 175, 0.55);
    border-color: var(--accent-strong);
}
.btn-secondary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Cancel */
.btn-cancel {
    background: rgba(15, 23, 42, 0.96);
    color: var(--text-muted);
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all var(--transition-fast);
    flex: 1;
    backdrop-filter: blur(10px);
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-cancel:hover {
    background: rgba(31, 41, 55, 0.96);
    color: #e5e7eb;
    border-color: rgba(107, 114, 128, 1);
}

/* Success & attempts modals */
.success-modal .modal-content,
.too-many-attempts-modal .modal-content {
    text-align: center;
    padding: 32px 26px;
}

.success-icon,
.attempts-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.success-icon {
    color: var(--success);
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.55);
}
.attempts-icon {
    color: var(--danger);
    text-shadow: 0 0 12px rgba(248, 113, 113, 0.55);
}

.success-modal h2 {
    color: var(--success);
    margin-bottom: 10px;
    font-size: 18px;
}
.too-many-attempts-modal h2 {
    color: var(--danger);
    margin-bottom: 10px;
    font-size: 18px;
}

.success-modal p,
.too-many-attempts-modal p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.ok-btn {
    background-image: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #f9fafb;
    border: none;
    padding: 11px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-med);
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ok-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.4);
}

/* ---------- LOADING STATE ---------- */
.login-card.loading {
    opacity: 0.7;
    pointer-events: none;
}
.login-card.loading button::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #f9fafb;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-left: 8px;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- ACCESSIBILITY FOCUS ---------- */
.form-group input:focus,
.login-card button:focus,
.login-footer a:focus,
.toggle-password-icon:focus,
.toggle-password-reset-icon:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-cancel:focus,
.ok-btn:focus {
    outline: 2px solid rgba(56, 189, 248, 0.8);
    outline-offset: 2px;
}

/* ---------- RESPONSIVE ---------- */

/* Large desktop */
@media (min-width: 1201px) {
    .main-container {
        padding: 50px 80px;
    }
    .welcome-text h2 {
        font-size: 52px;
    }
}
/* Desktop / small desktop */
@media (min-width: 1025px) and (max-width: 1200px) {
    .main-container {
        padding: 40px 60px;
    }
    .welcome-text h2 {
        font-size: 36px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-container {
        padding: 32px 36px;
        gap: 30px;
    }
    .welcome-text h2 {
        font-size: 32px;
    }
    .welcome-text .welcome-lead {
        font-size: 15px;
    }
    .welcome-text .welcome-sub {
        font-size: 14px;
    }
}

/* Tablet portrait & below */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 26px 22px;
        gap: 26px;
        text-align: center;
        justify-content: flex-start;
    }
    .welcome-text {
        max-width: 100%;
    }
    .welcome-text h2 {
        font-size: 30px;
    }
    .welcome-text .welcome-lead {
        font-size: 14px;
    }
    .welcome-text .welcome-sub {
        font-size: 13px;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .main-container {
        padding: 20px 16px;
        gap: 22px;
    }
    .welcome-text h2 {
        font-size: 26px;
    }
    .welcome-text .welcome-lead {
        font-size: 13px;
    }
    .welcome-text .welcome-sub {
        font-size: 12.5px;
    }
}

/* Touch devices: kill hover transforms */
@media (hover: none) and (pointer: coarse) {
    .login-card:hover,
    .school-highlights .highlight:hover,
    .login-card button:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-cancel:hover,
    .ok-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Simple print */
@media print {
    .top-bar,
    .login-card,
    footer,
    .modal {
        display: none !important;
    }
    body::before {
        background: #ffffff;
    }
    .welcome-text {
        color: #000;
        text-align: center;
    }
}

/* ---------- SIMPLE ANIMATIONS ---------- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
