body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 30px 32px 24px;
    text-align: center;
}

.login-header h1 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.login-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
}

.login-header .subtitle {
    margin-bottom: 20px;
}

.login-form {
    margin-top: 10px;
}

.login-field {
    margin-top: 10px;
}

.login-field input[type="password"] {
    width: 70%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid #dee2e6;
    font-size: 1em;
}

.login-field input[type="password"]:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.login-error {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 5px;
    margin-bottom: 10px;
}

.login-actions {
    margin-top: 15px;
    text-align: right;
    text-align: center;
}

.login-footer-note {
    margin-top: 18px;
    font-size: 0.8em;
    color: #6c757d;
}

/* Button styling (aligned with main app theme) */
.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #FFC107;
    color: #333;
}

.btn-primary:hover {
    background: #FFA000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}


