.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-box {
  width: 100%;
  max-width: 460px;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13, 22, 38, .94), rgba(5, 10, 18, .9));
  border: 1px solid rgba(120, 160, 220, .24);
  box-shadow: 0 24px 55px rgba(0,0,0,.35);
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
}

.auth-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.auth-box h1 {
  margin: 0 0 10px;
  font-size: 32px;
}

.auth-box p {
  color: #b8c1d4;
  line-height: 1.5;
  margin-bottom: 24px;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #dbeafe;
}

.auth-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
  font-size: 16px;
}

.auth-btn {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  background: linear-gradient(135deg, #0b7cff, #1765e8);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 24px rgba(0, 110, 255, .38);
}

.auth-error {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 60, 60, .12);
  border: 1px solid rgba(255, 80, 80, .28);
  color: #ffc9c9;
  margin-bottom: 18px;
}

.auth-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-links a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 700;
}