body {
    font-family: Arial, sans-serif;
    background-color: #e6f2e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

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

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #005500;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 25px;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

.error-message {
    color: red;
    margin-bottom: 15px;
}

a {
    display: block;
    margin-top: 20px;
    color: #28a745;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}
