:root {
    --red: #dc4553;
    --red-dark: #b8323f;
    --cream: #fdf8f2;
    --text-dark: #2b2320;
    --border-light: #ddd0bd;
    --muted: #7d6f62;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 8px 24px rgba(43,35,32,0.10);
    text-align: center;
}

.login-logo {
    font-family: 'Pacifico', cursive;
    color: var(--red-dark);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.login-heading {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.login-subheading {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.field {
    margin-bottom: 16px;
    text-align: left;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.field input {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--cream);
    color: var(--text-dark);
}

.field input:focus {
    outline: none;
    border-color: var(--red);
    background: #ffffff;
}

.login-error {
    color: #c0392b;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.login-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.back-link {
    display: block;
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}