@charset "utf-8";
:root {
    --primary: #1A2744;
    --accent: #B8962E;
    --bg: #F5F6F8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(0,0,0,0.05);
}

.auth-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-group { margin-bottom: 1rem; }

label { display: block; margin-bottom: 0.5rem; color: #5A6480; font-size: 0.9rem; }

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

input:focus { border-color: var(--accent); }

button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.3s;
}

button:hover { background: var(--accent); }

.alert {
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
}/* CSS Document */

