/* Account Pages Unified Styling - CustomerSignIn & CustomerSignUp */
/* Enhanced Golden Theme with Animations and Particles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
    position: relative;
    overflow-x: hidden;
}

/* Animated Golden Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.95) 50%, rgba(0,0,0,0.9) 100%);
    z-index: -2;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.95) 50%, rgba(0,0,0,0.9) 100%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(184, 134, 11, 0.07) 0%, transparent 50%),
            linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.95) 50%, rgba(0,0,0,0.9) 100%);
    }
}


/* Particles Background */
#particles-js {
    position: fixed !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Floating Golden Particles */
.golden-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 1) 0%, rgba(212, 175, 55, 0.8) 40%, rgba(255, 215, 0, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: float 12s infinite linear;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 5%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { width: 3px; height: 3px; left: 15%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { width: 5px; height: 5px; left: 25%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(4) { width: 2px; height: 2px; left: 35%; animation-delay: 6s; animation-duration: 20s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 45%; animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(6) { width: 3px; height: 3px; left: 55%; animation-delay: 10s; animation-duration: 14s; }
.particle:nth-child(7) { width: 6px; height: 6px; left: 65%; animation-delay: 12s; animation-duration: 22s; }
.particle:nth-child(8) { width: 3px; height: 3px; left: 75%; animation-delay: 14s; animation-duration: 17s; }
.particle:nth-child(9) { width: 2px; height: 2px; left: 85%; animation-delay: 16s; animation-duration: 19s; }
.particle:nth-child(10) { width: 4px; height: 4px; left: 95%; animation-delay: 18s; animation-duration: 13s; }
.particle:nth-child(11) { width: 3px; height: 3px; left: 8%; animation-delay: 20s; animation-duration: 21s; }
.particle:nth-child(12) { width: 5px; height: 5px; left: 18%; animation-delay: 22s; animation-duration: 15s; }
.particle:nth-child(13) { width: 2px; height: 2px; left: 28%; animation-delay: 24s; animation-duration: 18s; }
.particle:nth-child(14) { width: 4px; height: 4px; left: 38%; animation-delay: 26s; animation-duration: 16s; }
.particle:nth-child(15) { width: 3px; height: 3px; left: 48%; animation-delay: 28s; animation-duration: 20s; }

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translateY(75vh) translateX(10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(25vh) translateX(15px) rotate(270deg);
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(0px) rotate(360deg);
        opacity: 0;
    }
}

/* Additional Twinkling Stars */
.twinkling-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFD700;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Main Container */
.account-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Card Styling */
.account-card {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 50px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    animation: cardGlow 3s ease-in-out infinite alternate;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.account-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.5) 0%, 
        rgba(255, 215, 0, 0.3) 25%, 
        rgba(184, 134, 11, 0.4) 50%, 
        rgba(255, 215, 0, 0.3) 75%, 
        rgba(212, 175, 55, 0.5) 100%);
    border-radius: 27px;
    z-index: -1;
    animation: borderGlow 20s linear infinite;
}

@keyframes cardGlow {
    0% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(212, 175, 55, 0.15),
            0 0 0 1px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes borderGlow {
    0% {
        background: linear-gradient(45deg, 
            rgba(212, 175, 55, 0.5) 0%, 
            rgba(255, 215, 0, 0.3) 25%, 
            rgba(184, 134, 11, 0.4) 50%, 
            rgba(255, 215, 0, 0.3) 75%, 
            rgba(212, 175, 55, 0.5) 100%);
    }
    25% {
        background: linear-gradient(45deg, 
            rgba(255, 215, 0, 0.3) 0%, 
            rgba(184, 134, 11, 0.4) 25%, 
            rgba(212, 175, 55, 0.5) 50%, 
            rgba(255, 215, 0, 0.3) 75%, 
            rgba(184, 134, 11, 0.4) 100%);
    }
    50% {
        background: linear-gradient(45deg, 
            rgba(184, 134, 11, 0.4) 0%, 
            rgba(212, 175, 55, 0.5) 25%, 
            rgba(255, 215, 0, 0.3) 50%, 
            rgba(184, 134, 11, 0.4) 75%, 
            rgba(212, 175, 55, 0.5) 100%);
    }
    75% {
        background: linear-gradient(45deg, 
            rgba(212, 175, 55, 0.5) 0%, 
            rgba(255, 215, 0, 0.3) 25%, 
            rgba(184, 134, 11, 0.4) 50%, 
            rgba(212, 175, 55, 0.5) 75%, 
            rgba(255, 215, 0, 0.3) 100%);
    }
    100% {
        background: linear-gradient(45deg, 
            rgba(212, 175, 55, 0.5) 0%, 
            rgba(255, 215, 0, 0.3) 25%, 
            rgba(184, 134, 11, 0.4) 50%, 
            rgba(255, 215, 0, 0.3) 75%, 
            rgba(212, 175, 55, 0.5) 100%);
    }
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.signin-card {
    max-width: 450px;
}

/* Logo Styling */
.account-logo {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.account-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

/* Header Styling */
.account-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.account-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FFD700 50%, #DAA520 75%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: titleShine 3s ease-in-out infinite;
    position: relative;
}

.account-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes titleShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
}

.account-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.account-subtitle a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.account-subtitle a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.account-subtitle a:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.account-subtitle a:hover::after {
    width: 100%;
}

/* Form Styling */
.account-form {
    width: 100%;
    animation: formSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes formSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    margin-bottom: 35px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    background: linear-gradient(135deg, #2D1810 0%, #4A2C17 50%, #2D1810 100%);
    color: #FFD700;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% {
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 215, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 215, 0, 0.15);
    }
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    border-radius: 15px;
    pointer-events: none;
}

/* Input Group Styling */
.input-group {
    position: relative;
    margin-bottom: 25px;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.input-group:nth-child(1) { animation-delay: 0.1s; }
.input-group:nth-child(2) { animation-delay: 0.2s; }
.input-group:nth-child(3) { animation-delay: 0.3s; }
.input-group:nth-child(4) { animation-delay: 0.4s; }
.input-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.input-group label {
    display: block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

.input-group label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, transparent);
    transition: width 0.3s ease;
}

.input-group:focus-within label::after {
    width: 30px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    min-height: 50px;
    position: relative;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    will-change: transform, box-shadow, border-color;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 
        0 0 0 3px rgba(255, 215, 0, 0.15),
        0 0 25px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px) scale(1.01);
}

.form-input:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.form-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-input {
    padding-left: 50px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 215, 0, 0.7);
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
}

.input-with-icon .form-input:focus + .input-icon {
    color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

/* Select Styling */
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 
        0 0 0 3px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.form-select option {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 10px;
}



/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 25%, #FFD700 50%, #DAA520 75%, #B8860B 100%);
    background-size: 200% 200%;
    border: none;
    color: #000000;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 50%;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.1),
            0 0 0 1px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover::before {
    opacity: 1;
}
/* Captcha Section */
.captcha-section {
    margin: 25px 0;
    text-align: center;
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-section img {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 12px 10px;
    height: 55px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.captcha-section img:hover {
    border-color: #FFD700;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin: 25px 0;
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    border-color: #FFD700;
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.checkbox-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}

label {
    color: rgba(255, 255, 255, 0.9);
}

/* Row and Column Layout */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-col-2 {
    flex: 0 0 calc(50% - 10px);
}

.form-col-3 {
    flex: 0 0 calc(33.333% - 14px);
}

.form-col-4 {
    flex: 0 0 calc(32% - 1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-card {
        padding: 40px 25px;
        margin: 15px;
        border-radius: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-col,
    .form-col-2,
    .form-col-3,
    .form-col-4 {
        flex: none;
        width: 100%;
    }
    
    .account-title {
        font-size: 28px;
    }
    
    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .account-container {
        padding: 15px;
    }
    
    .account-card {
        padding: 30px 20px;
    }
    
    .account-title {
        font-size: 24px;
    }
    
    .form-input,
    .form-select {
        padding: 12px 16px;
        min-height: 45px;
    }
    
    .btn-primary {
        padding: 15px 30px;
    }
}

/* Spinner Styling */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Validation Error Styling */
.field-validation-error,
.field-validation-error span {
    color: #FF6B6B !important;
    font-size: 13px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success Message Styling */
.success-message {
    background: rgba(72, 187, 120, 0.1);
    border: 2px solid rgba(72, 187, 120, 0.3);
    color: #68D391;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: successGlow 2s ease-in-out infinite alternate;
}

@keyframes successGlow {
    0% {
        box-shadow: 0 0 10px rgba(72, 187, 120, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(72, 187, 120, 0.4);
    }
}

/* Alert Styling */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    border: 2px solid rgba(72, 187, 120, 0.3);
    color: #68D391;
}

/* Link Styling */
.forgot-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.forgot-link:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.forgot-link:hover::after {
    width: 100%;
}

/* OTP Section */
.otp-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hidden Elements */
.d-none {
    display: none !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Additional Golden Effects */
.golden-glow {
    animation: goldenGlow 3s ease-in-out infinite alternate;
}

@keyframes goldenGlow {
    0% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

/* Form Focus Effects */
.form-input:focus,
.form-select:focus {
    animation: inputFocus 0.3s ease-out;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Page Load Animation */
.account-card {
    animation: pageLoad 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Hover Effects for Interactive Elements */
.form-input:hover,
.form-select:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Focus Effects */
.form-input:focus,
.form-select:focus {
    animation: inputFocus 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes inputFocus {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        transform: translateY(-2px) scale(1.01);
    }
}

/* Particle Enhancement for Better Visibility */
.particle {
    filter: blur(0.5px);
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.1);
}

/* Enhanced Button Animation */
.btn-primary {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input Icon Animation */
.input-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-with-icon .form-input:focus + .input-icon {
    color: #FFD700;
    transform: translateY(-50%) scale(1.1) rotate(5deg);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Enhanced Option Styling */
option {
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 12px;
    border: none;
    transition: all 0.3s ease;
}

option:hover,
option:checked {
    background: rgba(212, 175, 55, 0.3);
    color: #FFD700;
}

/* Loading State Animation */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-top: 2px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Particle Adjustments */
@media (max-width: 768px) {
    .particle {
        display: block !important;
        width: 2px !important;
        height: 2px !important;
        opacity: 0.7;
    }
    
    .golden-particles {
        opacity: 0.5;
    }
    
    .twinkling-stars {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .particle:nth-child(n+10) {
        display: none;
    }
}