body.login-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(ellipse at 20% 20%, #e8f0e9 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, #dce6f0 0%, transparent 45%),
        #f4f6f5;
    color: #1a2e1c;
}

.login-page__main {
    width: 100%;
    max-width: 22rem;
    padding: 1.5rem;
}

.login-box {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #c5d0c7;
    box-shadow: 0 12px 32px rgba(26, 46, 28, 0.08);
}

.login-box__title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.login-box__lead {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    color: #4a5c4d;
}

.login-box__facebook {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    background: #1877f2;
    color: #fff !important;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
}

.login-box__facebook:hover {
    background: #166fe5;
}

.login-box__hint {
    margin: 0;
    font-size: 0.85rem;
    color: #6b3a3a;
    line-height: 1.4;
}

.message,
.flash-message,
.error,
.success {
    margin-bottom: 1rem;
    padding: 0.65rem 0.85rem;
    font-family: system-ui, sans-serif;
    font-size: 0.85rem;
    text-align: center;
}

.error,
.message.error {
    background: #fde8e8;
    color: #8a1f1f;
}

.success,
.message.success {
    background: #e6f4ea;
    color: #1e5c2e;
}
