/* Default Dark Mode */
body {
    background-color: #2f2f2f;
    color: #ffffff;
    height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}



.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 50px;
    background-color: #3a3a3a;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Dark Mode Styles */
.dark-mode .login-container {
    background-color: #3a3a3a;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}



/* Footer styles */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #3a3a3a;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
