        :root {
      --primary-blue: #4B9BF1;
      --secondary-blue: #3498db;
      --dark-text: rgba(15, 14, 14, 0.864);
      --light-text: rgba(47, 46, 46, 0.681);
      --glass-bg: rgba(54, 53, 53, 0.255);
      --shadow: 0px 6px 40px rgba(0, 0, 0, 0.25);
      --hover-shadow: 0px 1px 20px 10px rgba(0, 0, 0, 0.25);
    }  
	 
	 * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            background: #4bc7f1ff;
            background-image: url('../img/bg2-login.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }




        .container {
            width: 100%;
            max-width: 450px;
            position: relative;
            z-index: 2;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 35px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 8px 32px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 12px 40px rgba(102, 126, 234, 0.3);
        }

        .logo-section {
            text-align: center;
            margin-bottom: 35px;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: #3498db;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .title {
            font-size: 2.2rem;
            font-weight: 700;
            background: #3498db;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .subtitle {
            color: #6b7280;
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .form-group {
            position: relative;
            margin-bottom: 25px;
        }

        .form-group.last {
            margin-bottom: 30px;
        }

        .input-container {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(102, 126, 234, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            overflow: hidden;
        }



        .input-icon {
            padding: 0 18px;
            color: #3498db;
            font-size: 1.1rem;
        }





        .form-input {
            flex: 1;
            padding: 16px 18px 16px 0;
            border: none;
            outline: none;
            background: transparent;
            font-size: 1rem;
            font-weight: 500;
            color: #374151;
            font-family: 'Poppins', sans-serif;
        }

        .form-input::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        .form-label {
            position: absolute;
            top: 16px;
            left: 60px;
            color: #9ca3af;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s ease;
            pointer-events: none;
            background: rgba(255, 255, 255, 0.9);
            padding: 0 8px;
            border-radius: 4px;
        }



        .login-btn {
            width: 100%;
            padding: 16px;
            background: #3498db;
            border: none;
            border-radius: 16px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .login-btn::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;
        }

        .login-btn:hover::before {
            left: 100%;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color:#3498db;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .forgot-password a:hover {
            color: #3498db;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            .container {
                max-width: 100%;
            }
            
            .login-card {
                padding: 30px 25px;
                border-radius: 20px;
            }
            
            .title {
                font-size: 1.8rem;
            }
            
            .logo {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 25px 20px;
                border-radius: 16px;
            }
            
            .title {
                font-size: 1.6rem;
            }
            
            .form-input {
                padding: 14px 16px 14px 0;
                font-size: 0.95rem;
            }
            
            .input-icon {
                padding: 0 16px;
                font-size: 1rem;
            }
            
            .login-btn {
                padding: 14px;
                font-size: 1rem;
            }
        }

        /* SweetAlert2 Custom Styles */
        .swal2-popup.swal2-glass {
            border-radius: 20px !important;
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            border: 1px solid #3498db !important;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2) !important;
        }

        .swal2-confirm {
            border-radius: 12px !important;
            font-weight: 600 !important;
            background: #3498db !important;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
            border: none !important;
        }

        .swal2-title {
            color: #374151 !important;
            font-family: 'Poppins', sans-serif !important;
        }

        .swal2-html-container {
            color: #6b7280 !important;
            font-family: 'Poppins', sans-serif !important;
        }