/* LOGIN PAGE */

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #606C38 0%, #283618 50%, #1a2410 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    margin: 1rem;
}

.login-card h4 {
    font-weight: 700;
    color: #283618;
    margin-bottom: 1.5rem;
}

.login-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

.login-card .form-control:focus {
    border-color: #606C38;
    box-shadow: 0 0 0 0.2rem rgba(96, 108, 56, 0.15);
}

.login-card .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.login-card .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: #555;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.login-links a {
    color: #606C38;
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.cf-turnstile {
    min-height: 24px;
}
