/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f3ef; /* Light, slightly warm textured look background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Layout */
.login-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styling */
.logo-area {
    margin-bottom: 25px;
    text-align: center;
}

.logo {
    max-width: 220px;
    height: auto;
    mix-blend-mode: multiply; /* This knocks out light backgrounds instantly */
}
/* Card Style */
.login-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.login-card h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Form Inputs */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #002233;
}

.input-group input::placeholder {
    color: #999999;
}

/* Options & Checkbox */
.form-actions {
    margin-bottom: 12px;
}

.forgot-password {
    font-size: 13px;
    color: #666666;
    text-decoration: underline;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me input {
    margin-right: 8px;
    cursor: pointer;
}

.remember-me label {
    font-size: 13px;
    color: #333333;
    user-select: none;
    cursor: pointer;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 14px;
    background-color: #002233; /* Deep dark blue matching the image button */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #00334d;
}

/* Admin Notice */
.admin-notice {
    text-align: center;
    font-size: 13px;
    color: #333333;
    margin-top: 25px;
}

.admin-notice a {
    color: #666666;
    text-decoration: underline;
}

/* Footer Styling */
.login-footer {
    margin-top: 30px;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    color: #666666;
    text-decoration: underline;
    margin: 0 10px;
}

.login-footer p {
    font-size: 11px;
    color: #888888;
}