* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(180, 142, 67, 0.15), transparent 40%),
    linear-gradient(180deg, #111317 0%, #0a0c10 100%);
  color: #f5f1e6;
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(19, 23, 31, 0.95);
  border: 1px solid rgba(196, 160, 90, 0.25);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.auth-card-wide {
  max-width: 520px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.auth-emblem {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #c9a86a, #8d6b32);
  color: #111;
}

.auth-kicker {
  margin: 0 0 6px;
  color: #bba27a;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.auth-brand h1 {
  margin: 0;
  font-size: 32px;
}

.auth-text {
  margin-bottom: 28px;
  color: #aab0bc;
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-form span {
  color: #d3d7de;
  font-size: 14px;
}

.auth-form input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #161b23;
  color: #fff;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.auth-form input:focus {
  border-color: #c9a86a;
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}

.auth-button {
  margin-top: 8px;
  height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #c9a86a, #8d6b32);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.auth-links {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.auth-links a {
  color: #c9a86a;
  text-decoration: none;
  font-size: 14px;
}
