h2{
    color: white;
}

label{
    color: white;
}

body {
    font-family: sans-serif;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 100vh;
    background-color: #000000;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}
.login-container {
    background-color: #001c4f;
    padding: 20px;
    border-radius: 10px;
    width: 85%; /* Adjust width for better mobile experience */
    max-width: 400px; /* Prevents extremely wide containers */
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%; /* Make input full-width */
    box-sizing: border-box; /* Important for responsive sizing */
}
button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block; /* Add this */
    width: auto; /* Change this */
    margin: 0 auto; /* Center horizontally */
    margin-bottom: 10px; /* Add spacing */

}
.error {
    color: red;
    margin-top: 10px;
    font-size: 1em; /* Adjust font size as needed */
}