
        
        .auth-card {
            /* background: rgba(255, 255, 255, 0.95); */
            background-color: transparent !important;
            border-radius: 20px;
            box-shadow: 0 15px 35px #ff660013;
            overflow: hidden;
            backdrop-filter: blur(10px) brightness(50%);
            border: 1px solid #ff660052;
            position: relative;
            width: 100%;
            max-width: 450px;
            z-index: 1;
            margin: 15vh auto 100px auto;
        }
   
        
        /* RGB Border Animation */
        .auth-card::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: var(--gradient-rgb);
            background-size: 400% 400%;
            border-radius: 25px;
            z-index: -1;
            animation: rgb-border 8s ease infinite;
            filter: blur(10px);
            opacity: 0.7;
        }
        
        @keyframes rgb-border {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .auth-header {
            /* background: var(--gradient); */
                background: linear-gradient(90deg, #ff6600, #ffcc00); /* Optional gradient */

            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .auth-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }
        
        .auth-header h2 {
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .auth-body {
            padding: 40px 30px;
        }
        
        .form-label {
            font-weight: 600;
            color: #a1a1a1;
            margin-bottom: 8px;
        }
        
        .input-group {
            margin-bottom: 5px;
        }
        
        .input-group-text {
            background: #f8f9fa;
            border: 1px solid #e1e5eb;
            border-right: none;
        }
        
     .form-control {
         padding: 12px 15px;
         border: 2px solid transparent;
         border-radius: 5px;
         background-origin: border-box;
         background-clip: padding-box, border-box;
         background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #ff6600, #ffcc00);
         transition: all 0.3s ease;
         outline: none;
         /* background-color: #ffcc00 !important; */
         /* background-color: transparent !important; */
}

/* On focus, apply gradient border */
.form-control:focus {
    background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #ff6600, #ffcc00);
    border-color: transparent;
    box-shadow: none; /* Optional: remove existing box shadow */
}

        
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(102, 126, 234, 0.3);
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .btn-primary:hover::after {
            left: 100%;
        }
        
        .auth-switch {
            text-align: center;
            margin-top: 25px;
            color: #666;
        }
        
        .auth-switch a {
            color: #667eea;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .auth-switch a:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        
        /* Floating animation for icons */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Password toggle */
        .password-toggle {
            cursor: pointer;
            background: #f8f9fa;
            border: 1px solid #e1e5eb;
            border-left: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
            color: #6c757d;
        }
        
        /* Decorative elements */
        .decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.1;
            z-index: 0;
        }
        
        .decoration-1 {
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
        }
        
        .decoration-2 {
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .auth-body {
                padding: 30px 20px;
            }
            
            .auth-header {
                padding: 25px 15px;
            }
        }
  
        @media (min-width:768px) and (max-width:992px) {
            .auth-header{
                padding: 15px 10px;
            }
            .auth-header h2{
                margin-bottom: 10px;
                font-size: 16px;
            }
            .auth-body{
                padding: 30px !important;
            }
        }
        
        