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

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Text', Georgia, serif;
    background: linear-gradient(135deg, #1a1410 0%, #2a2018 50%, #1a1410 100%);
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: linear-gradient(145deg, #f3e6c8 0%, #e8d4a8 100%);
    border-radius: 8px;
    padding: 48px 44px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5),
                0 0 0 1px rgba(139,90,43,0.3),
                inset 0 0 60px rgba(139,90,43,0.08);
    color: #2b1810;
}

.auth-seal {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4px;
}

.auth-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.auth-subtitle {
    text-align: center;
    color: #5a4a3a;
    font-style: italic;
    margin-bottom: 28px;
}

.auth-message {
    text-align: center;
    color: #3d2d1d;
    margin: 18px 0 24px;
}

.auth-error {
    background: linear-gradient(135deg, #8b1a22 0%, #6d1419 100%);
    color: #f5e6c8;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
    border-left: 4px solid #c9a227;
}

.auth-form-group { margin-bottom: 18px; }

.auth-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d2d1d;
    margin-bottom: 6px;
}

.auth-input {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    color: #2b1810;
    background: linear-gradient(180deg, #fff9ed 0%, #f3e6c8 100%);
    border: 2px solid #c9a86c;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
    border-color: #8b5a2b;
    box-shadow: 0 0 0 3px rgba(139,90,43,0.18);
}

.auth-check-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.auth-check-group input { accent-color: #8b1a22; }

.auth-submit {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f3e6c8;
    background: linear-gradient(180deg, #a12830 0%, #6d1419 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(139,26,34,0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139,26,34,0.55);
}

.auth-submit-link { margin-bottom: 12px; }

.auth-link-row {
    text-align: center;
    margin-top: 20px;
    color: #5a4a3a;
}

.auth-link-row a {
    color: #8b1a22;
    font-weight: 600;
}

.auth-link-row a:hover { color: #a12830; }
