
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        /* Background Animation */
        @keyframes backgroundMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .animated-bg {
            background: linear-gradient(-45deg, #002855, #004d40, #0088cc, #00cc99);
            background-size: 300% 300%;
            animation: backgroundMove 12s ease infinite;
        }

        /* Form Animation */
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Logo Styling - No Overlap */
        .logo-container {
            display: flex;
            justify-content: center;
        }

        .logo-container img {
            height: 100px;
            width: 100px;
            border: 4px solid #14b8a6;
            border-radius: 50%;
            box-shadow: 0px 0px 15px rgba(0, 255, 200, 0.6);
            transition: transform 0.3s ease-in-out;
            object-fit: contain;
        }
        .logo-container img:hover {
            transform: scale(1.05);
        }

        /* Glow Effects */
        .glow-input {
            border: 2px solid transparent; /* Removes default border */
            transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
        }

        .glow-input:focus {
            border-color: #00ffcc !important; /* Teal Border */
            box-shadow: 0 0 10px rgba(0, 255, 200, 0.6);
            outline: none !important; /* Removes default black outline */
        }

        /* Glowing Button */
        .glow-button {
            background: linear-gradient(135deg, #0077b6, #00a89d);
            font-weight: bold;
            transition: all 0.3s ease-in-out;
        }

        .glow-button:hover {
            box-shadow: 0 0 15px rgba(0, 255, 200, 1);
            transform: translateY(-2px);
        }