/* ── Auth pages (login, register) ── */

.auth-card {
    width: 100%;
    max-width: 380px;
    padding: 3rem 2.5rem;
    text-align: center;
}
.auth-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    color: #5c4042;
    margin-bottom: 0.25rem;
}
.auth-card .subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a08880;
    margin-bottom: 2.5rem;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.auth-form input {
    padding: 0.85rem 1.1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 0.5rem;
    background: rgba(253, 252, 251, 0.8);
    color: #5c4042;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form input:focus {
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.auth-form input::placeholder {
    color: #a08880;
}
.auth-form button {
    padding: 0.85rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #c9a96e;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.25rem;
}
.auth-form button:hover {
    background: #b8944f;
}
.auth-error {
    color: #8a5a2b;
    background: rgba(201, 169, 110, 0.1);
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
}
.auth-error p { margin-bottom: 0.25rem; }
.auth-error p:last-child { margin-bottom: 0; }
.auth-links {
    margin-top: 1.75rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.82rem;
    color: #a08880;
}
.auth-links a {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}
.auth-links a:hover {
    color: #b8944f;
}
