﻿/* ─── Login ──────────────────────────────────────────────────────── */
:root {
  --bg: #f0ede8; --surface: #fff;
  --border: #e0dbd4; --text: #2d2a26;
  --text-muted: #9a9086;
  --accent: #e07a5f; --accent-hover: #c9634a;
  --accent-soft: #fdf0ec; --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,.10);
  --font: 'PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}

.login-wrap { width: 100%; max-width: 400px; padding: 20px; }
.login-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.login-logo { font-size: 48px; margin-bottom: 12px; }
.login-card h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.login-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.field {
  text-align: left; margin-bottom: 16px;
}
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
  background: var(--bg);
}
.field input:focus, .field select:focus { border-color: var(--accent); }
.field input::placeholder { color: #c8c0b8; }

.error-msg { font-size: 13px; color: #e53935; min-height: 20px; margin-bottom: 12px; text-align: left; }

.btn-login {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .15s;
}
.btn-login:hover { background: var(--accent-hover); }

.login-hint {
  margin-top: 24px; font-size: 12px; color: var(--text-muted);
  line-height: 1.8;
}
.login-hint code { background: var(--accent-soft); padding: 2px 6px; border-radius: 4px; color: var(--accent); font-size: 13px; }

@media (max-width: 480px) {
  .login-card { padding: 28px 20px; }
}