        .card {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            width: 100%;
            max-width: 400px;
            animation: slideIn 0.8s ease-out;
        }

        /* Form Control Styles */
        .form-control {
            padding: 0.8rem;
            margin-bottom: 0.7rem;
            font-size: 1rem;
            border-radius: 8px;
        }

        .form-label {
            color: #000000;
            font-size: 1rem;
        }

        /* Button Styles */
        .btn-primary {
            background-color: #00a664;
            border: none;
            padding: 1rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #08005e;
            transform: scale(1.05);
        }

        .btn-secondary {
            background-color: #888;
            color: #fff;
            border-radius: 8px;
            padding: 1rem;
            width: 100%;
            font-size: 1.1rem;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: #555;
            transform: scale(1.05);
        }

        .card-body {
            padding: 1.5rem;
            animation: fadeIn 1.5s ease-in-out;
        }

        h3 {
            color:  #000000;
            font-weight: bold;
            margin-bottom: 39px;
            text-align: center;
        }

        .footer-links {
            text-align: center;
            margin-top: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .form-check-label{
            color: #000000
        }

        /* Animation Keyframes */
        @keyframes slideIn {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(0); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Mobile responsiveness */
        @media (max-width: 576px) {
            .card {
                width: 100%;
                margin: 1rem;
            }
        }
/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #000; /* Black background */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    position: flex;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* AI Animation */
.ai-animation {
    position: flex;
    width: 60%;
    height: 100%;
    pointer-events: none;
}

/* Pulsating Nodes */
.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00ff99;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff99, 0 0 30px #00ffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Node Positions */
.node1 { top: 20%; left: 40%; }
.node2 { top: 50%; left: 15%; }
.node3 { top: 50%; left: 70%; }
.node4 { top: 80%; left: 30%; }
.node5 { top: 80%; left: 60%; }

/* Connecting Lines */
.connection {
    position: absolute;
    width: 2px;
    background: linear-gradient(90deg, #00ff99, #00ffff);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #00ff99; }
    50% { box-shadow: 0 0 15px #00ffff; }
    100% { box-shadow: 0 0 5px #00ff99; }
}

/* Line Positions */
.conn1 { top: 35%; left: 28%; height: 60px; transform: rotate(-45deg); }
.conn2 { top: 35%; left: 45%; height: 60px; transform: rotate(45deg); }
.conn3 { top: 70%; left: 23%; height: 50px; transform: rotate(-20deg); }
.conn4 { top: 70%; left: 57%; height: 50px; transform: rotate(20deg); }

/* Login Form */
.login {
    position: relative;
    z-index: 2; /* Above AI animation */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login h2 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #08005e;
}

.login form input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #08005e;
    border-radius: 5px;
    font-size: 16px;
}

.login form button {
    width: 100%;
    padding: 10px;
    background: #08005e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login form button:hover {
    background: #00ff99;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: auto;
        height: auto; /* Stacks the divs on top of each other */
    }

    .ai-animation, .card {
        width: 100%;
        height: 100%; /* Each div takes half the height */
    }
}
/* Responsive: Move AI Animation Behind Login Fo*/

/* Container for social icons */
.social-icons {
    display: flex; /* Align icons horizontally */
    gap: 15px; /* Space between icons */
    justify-content: center; /* Center the icons horizontally */
    align-items: center; /* Align vertically */
    margin-top: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
}

/* Styling for the links */
.social-icon {
    display: inline-block;
    width: 20px; /* Default size */
    height: 20px; /* Default size */
    background-size: cover; /* Ensure the background image covers the div */
    background-position: center; /* Center the background image */
    transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth hover effect */
    text-decoration: none; /* Remove underline */
}

/* Hover effect for links */
.social-icon:hover {
    transform: scale(1.1); /* Slightly enlarge the icon */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .social-icon {
        width: 35px; /* Smaller icon size for medium screens */
        height: 35px; /* Smaller icon size for medium screens */
    }
}

@media (max-width: 992px) {
    .social-icon {
        width: 30px; /* Smaller icon size for tablets and smaller screens */
        height: 30px; /* Smaller icon size for tablets and smaller screens */
    }
}

@media (max-width: 768px) {
    .social-icon {
        width: 25px; /* Even smaller icon size for smaller screens */
        height: 25px; /* Even smaller icon size for smaller screens */
    }
}

@media (max-width: 576px) {
    .social-icon {
        width: 20px; /* Smallest icon size for mobile screens */
        height: 20px; /* Smallest icon size for mobile screens */
    }
}

/* Styling for headings and text */

span {
    font-weight: bold;
}
p{
    text-color: grey;
}

.password-format {
    display: none;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Optional: Styling for the password format text */
.password-format small {
    font-size: 0.8rem;
}