/* Custom Auth – simple, clean form */

.auth-form-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, sans-serif;
    max-width: 360px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-form-container .auth-form-title {
    margin: 0 0 1.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.auth-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form-container .auth-recaptcha-wrap {
    margin: 0.25rem 0;
}
.auth-form-container .g-recaptcha {
    display: inline-block;
}

.auth-form-container input[type="text"],
.auth-form-container input[type="email"],
.auth-form-container input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #1a1a1a;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.auth-form-container input::placeholder {
    color: #888;
}

.auth-form-container input:hover {
    background: #f5f5f5;
}

.auth-form-container input:focus {
    border-color: #c9a227;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.auth-submit-btn {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #e8c547;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.auth-submit-btn:hover {
    background: #dbb42e;
}

.auth-submit-btn:active {
    transform: scale(0.99);
}

.hp-field {
    display: none !important;
}

.auth-errors {
    color: #c53030;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.auth-success {
    color: #276749;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.auth-form-container p:first-child {
    margin-top: 0;
}

/* Message box (already logged in / already registered) */
.auth-form-message-box {
    margin: 3rem auto;
}

.auth-form-message {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
}
