@import url('./theme.css');

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: radial-gradient(circle at top left, rgba(30, 90, 150, 0.9), rgba(22, 58, 95, 1));
}

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

.auth-card {
  width: 440px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10, 25, 44, 0.22);
  padding: 34px 36px 24px;
}

.auth-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.auth-subtitle {
  text-align: center;
  color: var(--muted-color);
  margin-bottom: 26px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-preview {
  flex: 0 0 110px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e7f0fa, #cfdff0);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.auth-footer {
  text-align: center;
  color: var(--muted-color);
  margin-top: 14px;
}
