/* Common form styles */
@import "forms-vyzZNVS.css";

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 150px); /* Adjust footer height if needed */
    padding: 2rem 1rem;
}

.form-card {
    width: 100%;
    max-width: 420px;
}

.form-card h1 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.form-card .auth-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text-primary);
    transition: background-color 0.2s, border-color 0.2s;
    margin-bottom: 1rem;
}

.social-login-btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary-hover);
}

.social-login-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.auth-footer-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.auth-footer-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

.agree-terms {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.agree-terms input {
    margin-right: 10px;
}

.agree-terms label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}
