/* ==========================================================================
   CRAFT Web Labeler — Login Page Stylesheet
   Styles specific to the login page (login.html).
   Shared foundation styles are in base.css.
   ========================================================================== */

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
    box-shadow: var(--shadow-lg);
    padding: 32px;
    width: 100%;
    max-width: 360px;
}

h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 22px;
}

.form-group { margin-bottom: 14px; }

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

/* Submit button styles now provided by .btn system in base.css */
/* Input styles now provided by .form-input in base.css */
.login-card .btn {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.error {
    background: rgba(248,113,113,.1);
    color: var(--danger);
    padding: 9px 11px;
    border-radius: var(--r-md);
    font-size: 0.82rem;
    margin-bottom: 14px;
    border: 1px solid rgba(248,113,113,.25);
}
