/* ==========================================================================
   Maintenance Page Styles // Reactiongrafix
   ========================================================================== */

/* CSS Variables for easy customization */
:root {
    /* Colors */
    --primary-color: #fcaf3b;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --dark-bg: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.9);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem;  /* 36px */
    --font-size-5xl: 3rem;     /* 48px */
    
    --progress-green-light: #10b981;
    --progress-green-medium: #059669;
    --progress-green-dark: #047857;
    --progress-green-gradient: linear-gradient(90deg, var(--progress-green-light), var(--progress-green-medium));
    
    /* Spacing */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 1rem;       /* 16px */
    --radius-xl: 1.5rem;     /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
    line-height: 1.6;
}

/* Main Container */
.maintenance-container {
    max-width: 900px;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    animation: fadeIn 1s var(--transition-normal);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Header Styles */
.maintenance-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.logo-container {
    margin-bottom: var(--spacing-xl);
}

.logo {
    height: 115px;
    width: auto;
    filter: drop-shadow(var(--shadow-lg));
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fcaf3b;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: var(--font-size-2xl);
    color: var(--text-secondary);
    font-weight: 400;
}

/* Spacer */
.spacer {
    height: 40px;
}

/* Progress Section */
.progress-section {
    margin: var(--spacing-2xl) 0;
}

.progress-container {
    margin-bottom: var(--spacing-xl);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.progress-percentage {
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--font-size-xl);
}

.progress-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    box-shadow: inset var(--shadow-md);
}

.progress-fill {
    background: var(--progress-green-gradient) !important;
    height: 100%;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
    transition: width 0.05s linear;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

.progress-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: var(--font-size-sm);
    z-index: 10;
}

.progress-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-top: var(--spacing-xl);
    line-height: 1.8;
}

.progress-description strong {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    margin: var(--spacing-3xl) 0;
}

.services-title {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    list-style: none;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.service-item span {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Section */
.contact-section {
    margin: var(--spacing-3xl) 0;
}

.contact-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.contact-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--error-color);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    min-height: 20px;
    display: none;
}

.form-actions {
    margin-top: var(--spacing-2xl);
}

.submit-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: #fcaf3b;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    display: none;
}

.form-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    display: none;
    align-items: center;
    gap: var(--spacing-md);
    animation: slideIn var(--transition-normal);
}

.form-success i {
    color: var(--success-color);
    font-size: var(--font-size-2xl);
}

/* Footer Styles */
.maintenance-footer {
    margin-top: var(--spacing-3xl);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item i {
    font-size: var(--font-size-lg);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-xl);
}

/* Countdown Styles */
.countdown-container {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.countdown-label {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.countdown-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-container {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .company-name {
        font-size: var(--font-size-4xl);
    }
    
    .tagline {
        font-size: var(--font-size-xl);
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .countdown {
        gap: var(--spacing-md);
    }
    
    .countdown-number {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 480px) {
    body {
        padding: var(--spacing-sm);
    }
    
    .maintenance-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .company-name {
        font-size: var(--font-size-3xl);
    }
    
    .tagline {
        font-size: var(--font-size-lg);
    }
    
    .progress-bar {
        height: 25px;
    }
    
    .progress-indicator {
        width: 35px;
        height: 35px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }



/* CSS-only Progress Bar */
.progress-bar.css-only {
    position: relative;
}

.progress-bar.css-only .progress-fill {
    animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.progress-bar.css-only .progress-indicator {
    animation: indicatorMove 2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               indicatorColorChange 2s step-end forwards;
    animation-delay: 0.5s;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 85%; }
}

@keyframes indicatorMove {
    0% { left: 0%; }
    100% { left: 75%; }
}

@keyframes indicatorColorChange {
    0%, 99% { 
        content: attr(data-percent);
        background: var(--primary-color);
    }
    100% { 
        content: '✓';
        background: var(--success-color);
    }
}

/* Update the progress indicator HTML */
.progress-bar.css-only .progress-indicator::after {
    content: attr(data-percent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-bar.css-only.completed .progress-indicator::after {
    content: '✓';
}


/* ==========================================================================
   GLOSSY GREEN PROGRESS BAR
   ========================================================================== */

/* Progress Bar Container */
.progress-bar {
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

/* Glossy Green Progress Fill */
.progress-fill {
    height: 100%;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: width 0.05s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Main glossy gradient */
    background: linear-gradient(
        90deg,
        #10b981 0%,
        #34d399 25%,
        #10b981 50%,
        #34d399 75%,
        #10b981 100%
    ) !important;
    
    background-size: 200% 100% !important;
    animation: gradientFlow 4s infinite linear !important;
    
    /* Inner shadow for depth */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 10px rgba(16, 185, 129, 0.3);
}

/* Gradient flow animation */
@keyframes gradientFlow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Glass effect overlay */
.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    border-radius: 14px 14px 0 0;
    z-index: 2;
}

/* Shine effect */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
    z-index: 3;
}

@keyframes shine {
    0% { left: -100%; opacity: 0.5; }
    20% { opacity: 1; }
    100% { left: 200%; opacity: 0.5; }
}

/* Pulsing glow when completed */
.progress-fill.completed {
    animation: completedGlow 2s infinite alternate !important;
}

@keyframes completedGlow {
    0% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            0 2px 10px rgba(16, 185, 129, 0.3),
            0 0 20px rgba(16, 185, 129, 0.2);
    }
    100% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            0 2px 10px rgba(16, 185, 129, 0.3),
            0 0 30px rgba(16, 185, 129, 0.4),
            0 0 50px rgba(16, 185, 129, 0.2);
    }
}

/* Progress Indicator (Circle) */
.progress-indicator {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glass effect for indicator */
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    ), linear-gradient(145deg, #ef4444, #dc2626) !important;
    
    box-shadow: 
        0 4px 15px rgba(239, 68, 68, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    
    /* Border shine */
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Indicator color transitions */
.progress-indicator.orange {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    ), linear-gradient(145deg, #f59e0b, #d97706) !important;
    
    box-shadow: 
        0 4px 15px rgba(245, 158, 11, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.progress-indicator.green {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    ), linear-gradient(145deg, #10b981, #059669) !important;
    
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Completed checkmark indicator */
.progress-indicator.completed {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    ), linear-gradient(145deg, #10b981, #047857) !important;
    
    box-shadow: 
        0 5px 25px rgba(16, 185, 129, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        0 0 20px rgba(16, 185, 129, 0.3);
    
    font-size: 1.3rem;
    animation: indicatorPulse 1.5s infinite alternate;
}

@keyframes indicatorPulse {
    0% { transform: translate(50%, -50%) scale(1); }
    100% { transform: translate(50%, -50%) scale(1.1); }
}

/* Percentage text styling */
.progress-percentage {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-label {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Optional: Add particles effect when completed */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-30px) scale(0);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .progress-bar {
        height: 24px;
    }
    
    .progress-indicator {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    
    .progress-indicator.completed {
        font-size: 1.1rem;
    }
}

/* Add these to your existing progress bar CSS */
.progress-fill {
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: content;
}

.progress-indicator {
    transform: translateZ(0);
    will-change: left;
}

/* Reduce animation complexity */
.progress-fill::after {
    animation-duration: 4s; /* Slower = less CPU */
}

/* Pause animations when not visible */
.progress-bar:not(:visible) * {
    animation-play-state: paused !important;
}

/* Add to your existing CSS */
.form-group .error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error,
textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-spinner {
    display: none;
}

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.form-success.active {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.form-success i {
    font-size: 1.5rem;
}

.error-message.general {
    display: none;
}