/* Login Page Centering and Styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* Adjust for header/footer */
    background-color: #f2f7f1;
    padding: 20px;
}

.login-card {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #004d00;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-card label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.login-card input,
.login-card select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fdfdfd;
}

.login-card button {
    background-color: #004d00;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-card button:hover {
    background-color: #002d00;
}

.signup-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

.signup-text a {
    color: #006400;
    font-weight: bold;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}