/* Styles for shared formLibrary.php forms (auth.anthes.org) */

.central-auth-forms .auth-form h2 {
    display: none;
}

.central-auth-forms .form-group {
    margin-bottom: 0.85rem;
}

.central-auth-forms .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.central-auth-forms .form-group input {
    width: 100%;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    max-width: none;
}

.central-auth-forms .form-group input:focus {
    outline: none;
    border-color: rgba(125, 203, 92, 0.55);
    box-shadow: 0 0 0 3px rgba(125, 203, 92, 0.12);
}

.central-auth-forms .auth-button {
    width: 100%;
    padding: 0.75rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-strong), var(--accent));
    color: #102010;
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.central-auth-forms .auth-button:hover {
    opacity: 0.92;
}

.central-auth-forms .google-button-container.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
    background: #fff;
    color: #222;
}

.central-auth-forms .google-button-container img {
    width: 18px;
    height: 18px;
}

.central-auth-forms .google-button-container button {
    background: transparent;
    border: none;
    color: #222;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.central-auth-forms .auth-links {
    margin-top: 1rem;
    text-align: center;
}

.central-auth-forms .auth-links p {
    margin-top: 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.central-auth-forms .auth-links a {
    color: var(--accent-strong);
}

.central-auth-forms .error,
.central-auth-forms .error.smallText {
    color: #ffb1aa;
    background: rgba(224, 90, 79, 0.12);
    border: 1px solid rgba(224, 90, 79, 0.35);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
}
