@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ========================================
   BASE
   ======================================== */
body {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    margin: 0;
}

.hidden {
    display: none;
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a0073 0%, #660099 50%, #7b2faf 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    padding: 40px 36px;
    margin: 20px;
}

.login-logo {
    display: block;
    margin: 0 auto 28px;
    height: 48px;
}

.login-title {
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 28px;
    font-size: 1.4rem;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #660099;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.login-btn:hover {
    background: #4a0073;
}

.login-btn:active {
    transform: scale(0.98);
}

/* ========================================
   FLASH MESSAGES
   ======================================== */
.flash-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 420px;
}
