
        :root {
            --primary-color: #0071e3;
            --secondary-color: #86c3ff;
            --gold-color: #C19758;
            --background-color: #000;
            --card-color: rgba(30, 30, 30, 0.7);
            --text-color: #fff;
            --error-color: #ff3b30;
            --success-color: #34c759;
            --light-text: rgba(255, 255, 255, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background: var(--background-color);
            background-image: linear-gradient(125deg, #1a1a1a 0%, #000000 100%);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .background-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
        }

        .background-animation .shape {
            position: absolute;
            filter: blur(60px);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .background-animation .shape:nth-child(1) {
            background: var(--primary-color);
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }

        .background-animation .shape:nth-child(2) {
            background: var(--secondary-color);
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -200px;
            animation-delay: -5s;
        }

        .background-animation .shape:nth-child(3) {
            background: var(--gold-color);
            width: 200px;
            height: 200px;
            bottom: 30%;
            left: 10%;
            animation-delay: -2s;
        }

        @keyframes float {
            0% {
                transform: translate(0px, 0px) scale(1);
            }
            33% {
                transform: translate(70px, -70px) scale(1.1);
            }
            66% {
                transform: translate(-70px, 70px) scale(0.9);
            }
            100% {
                transform: translate(0px, 0px) scale(1);
            }
        }

        .container {
            width: 90%;
            max-width: 420px;
            padding: 40px;
            background: var(--card-color);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1;
            transition: all 0.3s ease;
        }

        .container:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-5px);
        }

        .logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #fff, var(--gold-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .logo p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
        }

        .login-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-color);
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.2);
        }

        .form-group.error input {
            border-color: var(--error-color);
            box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.2);
        }

        .error-message {
            color: var(--error-color);
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .proceed-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .proceed-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0), 
                rgba(255, 255, 255, 0.2), 
                rgba(255, 255, 255, 0));
            transform: skewX(-25deg);
            transition: all 0.75s ease;
        }

        .proceed-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .proceed-btn:hover::before {
            left: 100%;
        }

        .proceed-btn:active {
            transform: translateY(0);
        }

        .proceed-btn .btn-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .proceed-btn .btn-content i {
            margin-left: 8px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .proceed-btn:hover .btn-content i {
            transform: translateX(5px);
        }

        .links {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            font-size: 14px;
        }

        .links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .links a:hover {
            color: var(--gold-color);
        }

        .loading {
            display: none;
            position: relative;
            width: 100%;
            height: 4px;
            margin-top: 20px;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }

                    .loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30%;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
            animation: loading 1.5s infinite ease-in-out;
            border-radius: 2px;
        }

        @keyframes loading {
            0% {
                left: -30%;
            }
            100% {
                left: 100%;
            }
        }

        /* Additional Styles for Password Recovery */
        .hidden {
            display: none;
        }

        .back-link {
            margin-bottom: 20px;
        }

        .back-link a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .back-link a:hover {
            color: var(--gold-color);
        }

        .back-link a i {
            margin-right: 5px;
        }

        .info-message {
            background: rgba(0, 113, 227, 0.1);
            border-left: 3px solid var(--primary-color);
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--light-text);
        }

        .verification-code-container {
            display: flex;
            gap: 8px;
            margin-top: 5px;
        }

        .verification-digit {
            flex: 1;
            text-align: center;
            font-size: 20px;
            padding: 10px 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            outline: none;
            transition: all 0.3s ease;
        }

        .verification-digit:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
        }

        .resend-link {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: var(--light-text);
        }

        .resend-link a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .resend-link a:hover {
            color: var(--gold-color);
        }

        .password-strength {
            margin-top: 10px;
        }

        .strength-meter {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin-bottom: 5px;
            overflow: hidden;
        }

        .strength-bar {
            height: 100%;
            width: 0;
            border-radius: 2px;
            transition: width 0.3s ease, background-color 0.3s ease;
        }

        .strength-text {
            font-size: 12px;
            color: var(--light-text);
        }

        .success-message {
            text-align: center;
            margin: 20px 0 30px;
        }

        .success-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--success-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 15px;
        }

        .success-message h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .success-message p {
            color: var(--light-text);
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container > div:not(.hidden) {
            animation: fadeIn 0.4s ease forwards;
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
            }
            
            .verification-code-container {
                gap: 4px;
            }
            
            .verification-digit {
                font-size: 16px;
                padding: 8px 0;
            }
        }
    
    /* Error Notification Styles */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 59, 48, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 350px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.error-notification.show {
    transform: translateX(0);
}

.close-notification {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-notification:hover {
    opacity: 1;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}