  body {
            background: linear-gradient(to right, #093979, #0d47a1);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .alert {
            position: fixed;
            top: 20px; /* Keeps alert fixed at the top */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 400px;
            z-index: 1050;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 16px;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        }


        .alert i {
            margin-right: 8px;
        }

       @keyframes fadeInOut {
            0% { opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; }
        }

        .alert.show {
            animation: fadeInOut 5s ease-in-out;
        }


        .login-container {
            max-width: 900px;
            border-radius: 15px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            animation: fadeIn 1s ease-in-out;
        }
        .login-left {
            background: linear-gradient(to right, #093979, #0d47a1);
            color: #fff;
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }
        .login-right {
            background: #fff;
            padding: 50px;
            flex: 1;
        }
        .btn-login {
            background: #fbc505;
            border: none;
            color: #093979;
            font-weight: bold;
            padding: 12px;
            transition: all 0.3s;
        }
        .btn-login:hover {
            background: #fbc505;
            transform: scale(1.05);
        }
        /* Custom Input Focus Styling */
        .form-control {
            border: 0.3px solid #093979;
            border-radius: 8px;
            padding: 10px;
            font-size: 16px;
            transition: all 0.3s ease-in-out;
        }

        .form-control:focus {
            border-color: #fbc505 !important;
            box-shadow: none !important;
            outline: none !important;
        }

         .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px; /* Spacing between icons */
            margin-top: 20px;
        }

        .social-icons a {
            font-size: 24px;
            color: #093979;
            transition: all 0.3s ease-in-out;
        }

        .social-icons a:hover {
            color: #fbc505;
            transform: scale(1.1);
        }

        .footer-text {
            text-align: center;
            margin-top: 15px;
            color: gray;
            font-size: 0.9rem;
        }

        .footer-text a {
            color: gray;
            text-decoration: none;
            font-weight: bold;
        }

        .footer-text a:hover {
            color: #fbc505;
        }
        .input-group-text {
            background: #fbc505;
            border: none;
            color: #093979;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Password Input Styling Matching Your Design */
        .password-group {
            border-radius: 8px;
            overflow: hidden;
            background: transparent;
        }

        .password-group input {
            border: 0.3px solid #093979;
            border-radius: 8px;
            padding: 10px;
            font-size: 16px;
            background: #fff;
        }

        .password-group .input-group-text {
            background: #fbc505;
            border: none;
            color: #093979;
            font-weight: bold;
        }

        .password-group .toggle-password {
            background: #fbc505;
            border: none;
            color: #093979;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease-in-out;
        }

        .password-group .toggle-password:hover {
            border: none;
            color: #093979;
            transform: scale(1.1);
        }

        /* Input focus effect */
        .password-group input:focus {
            outline: none !important;
        }

        .btn-check:focus+.btn, .btn:focus {
            outline: 0;
            box-shadow: none !important;
        }

         @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }
            .login-left {
                display: none;
            }
            .login-right {
                padding: 20px;
            }
        }


        /* Hide Left Side on Mobile */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                max-width: 100%;
            }
            
            .login-left {
                display: none;
            }
            
            .login-right {
                padding: 20px;
            }
            
            .form-control {
                padding: 10px;
                font-size: 14px;
            }
            
            .btn-login {
                padding: 10px;
                font-size: 14px;
            }
            
            .social-icons a {
                font-size: 20px;
            }
            
            .footer-text {
                font-size: 0.8rem;
            }
        }

        /* Extra Small Devices */
        @media (max-width: 480px) {
            .login-right {
                padding: 15px;
            }
            
            .form-control {
                padding: 10px;
                font-size: 14px;
            }
            
            .btn-login {
                padding: 10px;
                font-size: 14px;
            }
            
            .social-icons {
                gap: 10px;
            }
            
            .social-icons a {
                font-size: 18px;
            }
            
            .footer-text {
                font-size: 0.75rem;
            }
        }
