/* ===== LOGIN PAGE ===== */
.login-page {
    background: url('/images/bg.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Updated login card background to brand color */
.login-card {
    background: #00405b; /* Dark Blue */
    padding: 30px;
    width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adjust logo for better contrast */
.login-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Form inputs and labels */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: bold;
    color: #bdd72e; /* Green */
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #bdd72e; /* Green border */
    border-radius: 5px;
    font-size: 16px;
    background: white;
    color: #00405b;
}

.input-group input:focus {
    border-color: white;
    outline: none;
}

/* Updated button styles */
.btn-primary {
    width: 100%;
    background-color: #bdd72e; /* Green */
    color: #00405b; /* Dark Blue text */
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: white;
    color: #00405b;
}

/* Error message styling */
.error {
    color: #bdd72e;
    font-weight: bold;
    margin-bottom: 15px;
}
