/* ── Login Page Styles ───────────────────────────────────── */
/* Standalone — no sidebar, no topbar, no main.css dependency */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0E8;
}

/* ── Card ────────────────────────────────────────────────── */
.login-card {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ── Card Header ─────────────────────────────────────────── */
.login-card__header {
  background: #03233F;
  padding: 2rem;
  text-align: center;
  color: white;
}

.login-card__subtitle {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Logo Mark (CSS arch — matches sidebar treatment) ──── */
.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #A62C2C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-arch {
  width: 18px;
  height: 10px;
  border: 2.5px solid #FAF2E6;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.login-logo-text {
  text-align: left;
}

.login-logo-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #FAF2E6;
  line-height: 1.1;
}

.login-logo-sub {
  font-size: 9px;
  color: #80A1C2;
  margin-top: 2px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Card Body ───────────────────────────────────────────── */
.login-card__body {
  background: white;
  padding: 2rem;
}

.login-card__body p {
  color: #555;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ── Form Groups ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 0.375rem;
}

.form-group input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #D1C9BB;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus {
  border-color: #1B2A4A;
  box-shadow: 0 0 0 2px rgba(27, 42, 74, 0.15);
}

/* ── Submit Button ───────────────────────────────────────── */
.btn-signin {
  width: 100%;
  padding: 0.75rem;
  background: #A62C2C;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: background 0.15s ease;
}

.btn-signin:hover {
  background: #8B2323;
}

.btn-signin:active {
  background: #751E1E;
}

/* ── Error Message ───────────────────────────────────────── */
.login-error {
  color: #A62C2C;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  padding: 0.625rem;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 4px;
}
.login-success {
  color: #276749;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  padding: 0.625rem;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: 4px;
}
