
body {
    background: url('https://nwhof.org/img/fb4b203a-6847-4772-914c-e01723e9f4ec/FI_vB7YVcAAjuMb.jpg?fm=jpg&q=80&fit=max&crop=743%2C418%2C52%2C0') center center / cover no-repeat fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
    text-align: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 8px;
}

.tagline {
    font-size: 15px;
    color: #707070;
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.social-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
    position: relative;
}

.social-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-google {
    background: white;
    color: #3c4043;
    border: 1.5px solid #dadce0;
}

.btn-google:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.terms-note {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.terms-note a {
    color: #3665f3;
    text-decoration: none;
}

.terms-note a:hover {
    text-decoration: underline;
}

.error-banner {
    background: #fdecea;
    color: #c62828;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
    text-align: left;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 36px 24px;
    }
}
    