/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #4169e1; /* Dark blue background */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.container h1 {
    color: #0e3a8c; /* Matching blue color */
    margin-bottom: 1.5rem;
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 2rem);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    width: calc(100% - 2rem);
    padding: 1rem;
    background-color: #00b140; /* Green button */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #009933; /* Darker green on hover */
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.remember-me input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #0e3a8c;
    text-decoration: none;
    display: block;
    margin-top: 1rem;
}

.forgot-password:hover {
    text-decoration: underline;
}
