        /* Add the CSS you provided here to ensure it's loaded */
        :root {
            --primary-color: #01203f;    /* Space Blue */
            --secondary-color: #00798f;  /* Seaweed */
            --accent-color: #e63743;     /* Carmine Pink */
            --text-color: #333;
            --light-bg: #f8f9fa;
        }
        
        body {
            background-image:
            url('../../../public/img/pattern/pattern.png'),
            linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            width: 100%;
            position: relative;
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            padding: 60px 0 0 0;
        }
        
        .recovery-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .recovery-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 450px;
            width: 100%;
        }
        
        .recovery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-align: center;
            padding: 40px 20px 30px;
            border-bottom: none;
            position: relative;
        }
        
        .card-header h3 {
            margin: 0;
            font-weight: 600;
            font-size: 1.8rem;
        }
        
        .card-header p {
            margin: 15px 0 0 0;
            opacity: 0.9;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .card-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .card-body {
            padding: 40px 30px 30px;
        }
        
        .input-group {
            margin-bottom: 25px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease;
        }
        
        .input-group:focus-within {
            box-shadow: 0 4px 20px rgba(6, 79, 67, 0.3);
        }
        
        .input-group-prepend .input-group-text {
            background: white;
            border: none;
            padding: 15px 20px;
            color: var(--primary-color);
            font-size: 1.1rem;
            min-width: 50px;
            justify-content: center;
        }
        
        .form-control {
            border: none;
            padding: 15px 20px;
            font-size: 1rem;
            background: white;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            box-shadow: none;
            background: #fafbff;
        }
        
        .form-control::placeholder {
            color: #a0a4b8;
        }
        
        .recovery_btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(6, 79, 67, 0.4);
            width: 100%;
            margin-top: 10px;
            color: white;
        }
        
        .recovery_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 79, 67, 0.6);
            color: white;
        }
        
        .recovery_btn:disabled {
            transform: none;
            box-shadow: 0 4px 15px rgba(6, 79, 67, 0.4);
            opacity: 0.8;
        }
        
        .card-footer {
            background: rgba(248, 249, 250, 0.8);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 25px 30px;
        }
        
        .card-footer .links, .card-footer a {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        .card-footer a {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-left: 5px;
        }
        
        .card-footer a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        .loader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10000;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            display: none;
        }
        
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 576px) {
            .recovery-card {
                margin: 20px;
            }
            
            .card-body {
                padding: 30px 20px 20px;
            }
            
            .card-header {
                padding: 30px 20px 25px;
            }
            
            .card-header h3 {
                font-size: 1.5rem;
            }
        }
        
        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
        }
        
        .input-success {
            border-left: 4px solid #28a745 !important;
        }
        
        .input-error {
            border-left: 4px solid #dc3545 !important;
        }
        
        /* Password toggle button styling */
        .btn-password-toggle {
            background: white;
            border: none;
            padding: 15px 20px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .btn-password-toggle:hover {
            background: #f8f9fa;
            color: var(--secondary-color);
        }