@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        
        :root {
            --primary-color: #ff9a3c;
            --secondary-color: #ffd6a5;
            --text-color: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .main-container {
            min-height: calc(100vh - 140px);
            display: flex;
            align-items: center;
            padding: 40px 0;
            margin: 10% 0;
        }
        
        .recovery-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .recovery-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }
        
        .left-panel {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff7f00 100%);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .left-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }
        
        .recovery-icon {
            font-size: 5rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: scale(0.5);
            animation: iconPop 0.8s ease forwards 0.3s;
            z-index: 2;
            position: relative;
        }
        
        @keyframes iconPop {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .left-panel h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.5s;
            z-index: 2;
            position: relative;
        }
        
        .left-panel p {
            font-size: 1.1rem;
            opacity: 0.9;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.7s;
            z-index: 2;
            position: relative;
        }
        
        .right-panel {
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.9s;
        }
        
        .form-header h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #6c757d;
            font-size: 1rem;
        }
        
        .form-container {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 1.1s;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 8px;
            display: block;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            z-index: 3;
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 15px 15px 45px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 154, 60, 0.25);
            background-color: white;
        }
        
        .btn-recovery {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff7f00 100%);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .btn-recovery::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-recovery:hover::before {
            left: 100%;
        }
        
        .btn-recovery:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 154, 60, 0.4);
        }
        
        .additional-info {
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 1.3s;
        }
        
        .back-link {
            text-align: center;
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 1.5s;
        }
        
        .back-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .back-link a:hover {
            color: #ff7f00;
        }
        
        .footer {
            background-color: #333333;
            color: #ffffff;
            text-align: center;
            padding: 20px 0;
            margin-top: auto;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .recovery-content {
                grid-template-columns: 1fr;
            }
            
            .left-panel {
                padding: 40px 20px;
            }
            
            .left-panel h2 {
                font-size: 2rem;
            }
            
            .right-panel {
                padding: 40px 20px;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
            }
            
            .recovery-icon {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .main-container {
                padding: 20px 0;
                margin: 30% 0;
            }
            
            .recovery-card {
                margin: 0 15px;
            }
            
            .left-panel {
                padding: 30px 15px;
            }
            
            .right-panel {
                padding: 30px 15px;
            }
        }
        
        @media (min-width: 1200px) {
            .recovery-card {
                max-width: 1000px;
            }
            
            .left-panel {
                padding: 80px 50px;
            }
            
            .right-panel {
                padding: 80px 50px;
            }
        }