/* Clean, minimal login/signup page styles - design system consistent */

/* Page layout - use neutral background */
#auth-page {
    background: #ffffff;
    min-height: 100vh;
    padding: 60px 20px;
}

/* Auth form container - centered, clean */
.auth-container {
    max-width: 480px;
    margin: 0 auto;
}

/* Header section */
.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.auth-header p {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

/* Panel card */
.auth-panel {
    background: white;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Form group spacing */
.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
}

/* Form inputs - clean style */
.auth-form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #1a202c;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-family: inherit;
}

.auth-form-group input::placeholder {
    color: #a0aec0;
}

.auth-form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Error message */
.auth-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Button group */
.auth-button-group {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

/* Primary button */
.auth-btn-primary {
    flex: 1;
    padding: 11px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-btn-primary:active {
    transform: translateY(0px);
}

/* Secondary button */
.auth-btn-secondary {
    flex: 1;
    padding: 11px 20px;
    background: #f9fafb;
    color: #2d3748;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.auth-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #a0aec0;
}

/* Footer text */
.auth-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #718096;
}

.auth-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Required field indicator */
.required {
    color: #ef4444;
}

/* Autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #1a202c !important;
}

/* Profile page (simple) */
.profile-page {
    max-width: 980px;
    margin: 10px auto 0;
}

.profile-card {
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-card .field label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.profile-card .input {
    border-radius: 6px;
}


