
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-image: url('https://t4.ftcdn.net/jpg/06/23/84/47/240_F_623844718_qQROX4fM1VL6ToEsJdHdbMUh964t15ik.jpg');
            background-size: cover;
            background-position: center;
            animation: backgroundAnimation 15s infinite alternate;
        }

        @keyframes backgroundAnimation {
            0% {
                background-position: center top;
            }
            100% {
                background-position: center bottom;
            }
        }

        .card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
            margin: 30px auto;
            opacity: 0.9;
        }

        .card-header {
            background-color: #2575fc;
            color: white;
            text-align: center;
            padding: 30px;
            font-weight: 600;
        }

        .card-body {
            padding: 40px;
            background-color: #f7f9fc;
        }

        .form-control {
            border-radius: 30px;
            padding: 15px;
            font-size: 14px;
            margin-bottom: 15px;
            transition: all 0.3s ease-in-out;
            border: 1px solid #ccc;
        }

        .form-control:focus {
            border-color: #2575fc;
            box-shadow: 0 0 5px rgba(37, 117, 252, 0.5);
        }

        .btn-primary {
            background-color: #2575fc;
            border-color: #2575fc;
            border-radius: 30px;
            padding: 15px 30px;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s ease-in-out;
        }

        .btn-primary:hover {
            background-color: #1e58c6;
        }

        .text-center a {
            color: #2575fc;
            font-weight: bold;
        }

        .text-center a:hover {
            text-decoration: underline;
        }

        .login-separater hr {
            border-top: 1px solid #ddd;
        }

        .input-group-text {
            background-color: transparent;
            border: none;
            cursor: pointer;
        }

        /* Glowing Effect for the form */
        @keyframes glowing {
            0% {
                box-shadow: 0 0 5px #2575fc, 0 0 10px #2575fc, 0 0 20px #2575fc, 0 0 40px #2575fc;
            }
            50% {
                box-shadow: 0 0 5px #45f3ff, 0 0 10px #45f3ff, 0 0 20px #45f3ff, 0 0 40px #45f3ff;
            }
            100% {
                box-shadow: 0 0 5px #2575fc, 0 0 10px #2575fc, 0 0 20px #2575fc, 0 0 40px #2575fc;
            }
        }

        .card {
            animation: glowing 2s infinite alternate;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .card-body {
                padding: 25px;
            }

            .form-control {
                font-size: 12px;
            }

            .btn-primary {
                padding: 12px 25px;
            }
        }