/* Legacy login look (aligned with templates/login.html) */

html,
body.login-page {
  min-height: 100%;
}

body.login-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: linear-gradient(180deg, #f6f2ee 0%, #f3f5f7 100%);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
  padding-bottom: 40px;
  color: #111;
}

body.login-page .login-shell {
  width: 90%;
  max-width: 420px;
  background: #fff;
  padding: 24px 25px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(41, 30, 25, 0.12);
}

body.login-page .brand {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

body.login-page .divider {
  width: 35px;
  height: 3px;
  background: #111;
  margin: 12px auto;
}

body.login-page .login-tagline {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.5;
}

body.login-page label {
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 10px;
}

body.login-page input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 6px;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.login-page input:focus {
  outline: none;
  border-color: #d6002a;
}

body.login-page .login-btn {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  font-size: 16px;
  background: #d6002a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.login-page .login-btn:hover {
  background: #b80022;
  transform: translateY(-1px);
}

body.login-page .error-box {
  margin-top: 15px;
  margin-bottom: 4px;
  padding: 10px;
  background: #ffecec;
  border: 1px solid #f5c2c2;
  border-radius: 6px;
  color: #d32f2f;
  font-size: 14px;
  text-align: center;
}

body.login-page .section-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f7f7f8;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

body.login-page .footer {
  text-align: center;
  font-size: 11px;
  margin-top: 18px;
  color: #aaa;
}

@media (max-width: 480px) {
  body.login-page .login-shell {
    padding: 20px 18px 18px;
  }
}
