/* General Reset */
body {
            background: linear-gradient(135deg, #003399, #ffffff, #cc0000);
            background-size: 300% 300%;
            animation: gradient 6s ease infinite;
            height: 100vh;
        }


/* Container for the login box */
.login-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Logo styling */
.logo img {
    width: 120px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px;
}

/* Login title */
.login-title {
    font-size: 24px;
    color: #003399;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Form styles */
.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    color: #003399;
    margin-bottom: 5px;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="email"]:focus, input[type="password"]:focus {
    border-color: #003399;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 51, 153, 0.5);
}

/* Button styling */
.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #cc0000;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background-color: #990000;
}

/* Links styling */
.links {
    margin-top: 15px;
}

.links a {
    color: #003399;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}


/* Responsive design */
@media (max-width: 768px) {
    .login-container {
        margin: 20px;
        padding: 15px;
    }
}
