/**
 * Account pages (login, signup, password reset)
 * Styles for authentication-related pages
 */

/* Page background gradient */
.account-page-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Card styling */
.account-card {
    border-radius: 1rem;
    border: none;
}

/* Primary button styling */
.account-card .btn-primary {
    background-color: var(--primary-color, #4f46e5);
    border-color: var(--primary-color, #4f46e5);
}

.account-card .btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
}

/* Input group styling */
.account-card .input-group-text {
    background-color: #f8f9fa;
}

/* Honeypot field - completely hidden from users */
.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Turnstile widget container */
.turnstile-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Ensure Turnstile widget is visible */
.cf-turnstile {
    margin: 0 auto;
}
