/* Variables */
:root {
    --primary-blue: #402FDD;
    --accent-orange: #ED9E06;
    --danger-red: #D42C4D;
    --light-blue: #d1c4ff;
    --gray-25: #fafbfc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Global styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--gray-800);
    margin: 0;
    padding: 0;
}

/* Password Strength Validation Styles */
.password-strength-indicator {
    display: none;
    margin: 12px 0;
    padding: 12px;
    border-radius: 8px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.password-strength-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.password-criteria-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.password-criteria-list li {
    padding: 8px;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.password-criteria-list li:last-child {
    margin-bottom: 0;
}

/* Input error state */
.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Main content */
main {
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

/* Social Media Icons - Fixed Colors */
.social-icon {
    transition: transform 0.2s ease !important;
    border: none !important;
}

.social-icon:hover,
.social-icon:focus,
.social-icon:active {
    background-color: inherit !important;
    color: inherit !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15) !important;
    transform: scale(1.1);
}

/* Specific color overrides for Bootstrap classes */
.social-icon.bg-purple-700:hover,
.social-icon.bg-purple-700:focus,
.social-icon.bg-purple-700:active {
    background-color: #402FDD !important;
}

.social-icon.btn-primary:hover,
.social-icon.btn-primary:focus,
.social-icon.btn-primary:active {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.social-icon.btn-dark:hover,
.social-icon.btn-dark:focus,
.social-icon.btn-dark:active {
    background-color: #212529 !important;
    border-color: #212529 !important;
}

.social-icon-tiktok {
    background-color: #000 !important;
    color: white !important;
}

.social-icon-tiktok:hover,
.social-icon-tiktok:focus,
.social-icon-tiktok:active {
    background-color: #000 !important;
    color: white !important;
}


