body {
    font-family: "Funnel Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 5rem;
}

header > h1 {
    font-family: "Yellowtail", cursive;
    font-size: 3rem;
    color: #2c3e50;
}

em {
    font-family: "Yellowtail", cursive;
    font-size: 1.5rem;
    font-style: normal;
    color: #2c3e50;
}

p {
    font-size: 1.2rem;
}

.auth-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    margin: 0 auto;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 18px 50px rgba(44, 62, 80, 0.08);
    text-align: center;
}

.auth-card h1 {
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.auth-card p {
    margin: 0;
    color: #4b5563;
}

.auth-alert {
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: #ffe4e6;
    color: #b91c1c;
    border: 1px solid #fecdd3;
    border-radius: 10px;
    text-align: left;
    font-weight: 600;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
}

.auth-form label {
    font-weight: 700;
    color: #2c3e50;
    text-align: left;
}

.auth-form input[type="password"] {
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-form input[type="password"]:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.auth-form button {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.auth-form button:hover {
    background: #1f2d3a;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.14);
}

.auth-form button:active {
    transform: translateY(1px);
}