/* Signup Page Specific Styles */
/* CSP-compliant CSS without inline styles */

/* Hero Section Layout */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    min-height: 100vh;
}

/* Beautiful background override for signup page */
.hero-background {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%) !important;
    backdrop-filter: blur(20px);
}

/* Password Requirements */
.password-requirements {
    margin: 1rem 0 0.5rem 0;
    font-size: 10pt;
    color: #e2e8f0;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    line-height: 1.4;
}

/* Password Strength Display */
#strength {
    margin: 0.5rem 0 1rem;    
    color: #1a202c;
    background: linear-gradient(135deg, #f7d488, #d4a14d);
    border: 2px solid #d4a14d;
    border-radius: 6px;
    cursor: pointer;                                  
    text-align: center;
    padding: 8px 12px;
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2), 
                0 0 10px rgba(255, 223, 125, 0.4);
    font-weight: 600;
    min-height: 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Password confirmation indicator */
#confirmed {
    padding: 3px;
    margin: 0;
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 1000;
}

/* Email availability indicator */
#email_available {
    width: 24px;
    height: 24px;
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Agreement section styling */
.agreeRow {
    margin: 1.5rem 0px;
    font-size: 18px;
}

.agreement-container {
    display: flex;
    align-items: flex-start; /* Allow individual control of alignment */
    gap: 0.5rem;
    width: 100%;
}

.agreement-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem;
    cursor: pointer;
    color: #e2e8f0;
    line-height: 1.5;
    width: 100%;
    vertical-align: middle !important;
}

.agreement-checkbox {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-right: 8px !important;
    flex-shrink: 0;
    background: white !important;
    border: 2px solid #8b5cf6 !important;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    vertical-align: middle !important;
    transform: translateY(-1px) !important;
}

.agreement-text {
    line-height: 1.6;
    margin-top: 0;
}

.agreement-checkbox:checked {
    background: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
}

.agreement-text {
    flex: 1;
    margin-top: 2px;
}

.agreement-link {
    color: #8b5cf6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.agreement-link:hover {
    color: #a78bfa;
}

/* Required input styling */
.required-input { 
    outline: none !important;
    border-color: #D12122 !important;
    box-shadow: 0 0 10px rgba(209, 33, 34, 0.5) !important;
}

.hero-content {
    text-align: center;
}

.hero-text {
    margin-bottom: 1rem;
}

.hero-subtitle {
    text-align: center;
    margin: 0 auto 0.5rem;
}

/* Image Slides Container */
.image-slides-container {
    margin-bottom: 1rem;
    max-width: 540px;
    margin: 0 auto 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Risk Warning Styling */
.risk-warning {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
}

.risk-warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.risk-warning-icon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.risk-warning-title {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.risk-warning-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Referral System */
.referralNameCont {
    display: none;
}

.referral-glass-card {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.referral-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.referral-icon {
    color: var(--text-accent);
    margin-right: 0.5rem;
}

.sponsorName {
    color: var(--text-accent);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Result Containers */
.signupResult {
    display: none;
}

.templateResult {
    display: none;
}

.template-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-spinner {
    margin: 2rem auto;
}

/* Form Container */
.signup-form-container {
    max-width: 500px;
    margin: 0 auto;
    display: block; /* ALWAYS SHOW THE FORM */
}

/* Input Containers */
.input-relative {
    position: relative;
}

.email-available {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.password-confirm-relative {
    position: relative;
}

.password-confirmed {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Captcha Section */
.captcha-text-center {
    text-align: center;
    margin-top: 1rem;
}

.captcha-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.captcha-input {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

/* Agreement Section */
.agreement-container {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.agreement-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Button Styling */
.signupBtn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Login Link Section */
.loginLnk {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.login-link-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* No Sponsor Template */
.noSponsorTemplate {
    display: none;
}

.noSponsor-card {
    max-width: 600px;
    margin: 0 auto;
}

.noSponsor-content {
    text-align: center;
}

.noSponsor-icon {
    color: var(--text-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.noSponsor-icon i {
    margin-right: 0.5rem;
}

.noSponsor-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.noSponsor-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.noSponsor-contact {
    color: var(--text-secondary);
}

.noSponsor-link {
    color: var(--text-accent);
    text-decoration: underline;
}

/* Base Form Styling */
.signUpForm {
    width: 100%;
    display: block; /* ALWAYS SHOW THE FORM */
}up Page Specific Styles */
/* CSP-compliant CSS without inline styles */

/* Base Form Styling */
.signupForm {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 161, 77, 0.3);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Select Styling */
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 161, 77, 0.3);
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.25rem;
    min-width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

.checkbox-container label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

.checkbox-container a {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-container a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Referral System Styling */
.referral-info {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.referral-info h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.referral-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.referral-code {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Alert and Message Boxes */
.alertMsgBox {
    background: rgba(147, 51, 234, 0.15);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(147, 51, 234, 0.3);
    font-size: 18px;
}

.signupResult {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    box-shadow: none;
    border: none;
}

/* Captcha Styling */
.captchaRow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.showCImg {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid var(--primary-gold);
    font-size: 18px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.showCImg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Two Factor Authentication */
.twoFactorRow {
    display: none;
}

/* Agreement Rows */
.agreeRow,
.commissionsRow {
    display: block; /* ALWAYS SHOW AGREEMENT CHECKBOX */
    text-align: center;
    font-size: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
}

.commissionsRow {
    font-size: 0.85rem;
}

/* Special Input Styling */
#cimg {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

#twoFactor {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

/* Required Field Styling */
.required-input {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2) !important;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Risk Warning Styling */
.risk-warning {
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.1), 
        rgba(192, 57, 43, 0.1));
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.risk-warning h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.risk-warning p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.risk-warning strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Hero Badge Styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    color: var(--text-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Login Link Styling */
.login-link {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.login-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Template Result */
.templateResult {
    display: none;
}

/* Legacy Compatibility */
.angel-logo-div {
    text-align: center;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes lds-ellipsis3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes lds-ellipsis2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .glass-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .checkbox-container {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .checkbox-container label {
        font-size: 0.9rem;
    }
    
    .risk-warning {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .risk-warning h4 {
        font-size: 1.1rem;
    }
    
    .risk-warning p {
        font-size: 0.9rem;
    }
    
    .referral-info {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .referral-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .glass-card {
        margin: 0 0.5rem;
        padding: 1.25rem;
    }
    
    .alertMsgBox {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .checkbox-container {
        padding: 0.75rem;
    }
    
    .checkbox-container label {
        font-size: 0.85rem;
    }
    
    .risk-warning {
        padding: 1rem;
    }
    
    .risk-warning h4 {
        font-size: 1rem;
    }
    
    .risk-warning p {
        font-size: 0.85rem;
    }
    
    .referral-info {
        padding: 1rem;
    }
    
    .referral-info h4 {
        font-size: 1rem;
    }
    
    .referral-code {
        font-size: 1rem;
    }
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    text-align: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.password-strength.weak {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
    border-color: rgba(239, 68, 68, 0.5);
    color: #fecaca;
}

.password-strength.medium {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.5);
    color: #fef3c7;
}

.password-strength.strong {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.1));
    border-color: rgba(147, 51, 234, 0.5);
    color: #ddd6fe;
}

/* Form Validation States */
.form-input.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.form-input.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Form Validation States */
.form-input.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.form-input.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    text-align: center;
    display: none;
}

.password-strength.weak {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.password-strength.medium {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.password-strength.strong {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

/* Progress Indicator */
.signup-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-step {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: var(--transition-fast);
}

.progress-step.active {
    background: var(--primary-gold);
}

.progress-step.completed {
    background: #27ae60;
}

/* Icon Colors */
.check-icon-green {
    color: var(--accent-green);
}

/* Agreement Links */
.agreement-link {
    color: var(--text-accent);
    text-decoration: underline;
}

/* Dynamic Message Styles */
.success-message {    
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #e2e8f0;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.1);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #581c87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.success-title {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-text {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-info {
    background: rgba(147, 51, 234, 0.12);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.success-info p {
    color: #e2e8f0;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: #e2e8f0;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.error-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.error-title {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.error-text {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

.warning-message {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: #92400e;
    margin: 1.5rem 0;
}

.warning-title {
    color: #92400e;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.warning-icon {
    background: #f59e0b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 16px;
    font-weight: bold;
}

.form-errors {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: #92400e;
    margin: 1.5rem 0;
}

.form-errors-title {
    color: #92400e;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-errors-icon {
    background: #f59e0b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 16px;
    font-weight: bold;
}

.form-errors-list {
    margin: 0;
    padding-left: 1.5rem;
    color: #b45309;
    line-height: 1.6;
}

.form-errors-item {
    margin-bottom: 0.5rem;
}
