.auth-page {
  display: flex;
  justify-content: center;
  padding: 16px 0 48px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dddddd;
}

.auth-title {
  font-size: 22px;
  font-weight: bold;
  color: #808080;
  text-align: center;
  margin-bottom: 24px;
}

.auth-desc {
  font-size: 13px;
  color: #808080;
  line-height: 1.6;
  margin-bottom: 20px;
}

.auth-desc a {
  color: #0088cc;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #808080;
  margin-bottom: 4px;
}

.auth-input {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.auth-input:focus {
  border-color: #0096af;
  outline: none;
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0088cc;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.auth-submit:hover {
  opacity: 0.92;
}

.auth-notice {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.auth-notice-success {
  background: #e8f7f3;
  color: #1bbc9b;
}

.auth-notice-error {
  background: #fdecea;
  color: #e74c3c;
}

.auth-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  text-align: center;
}

.auth-links a {
  color: #0088cc;
  font-size: 13px;
}

.auth-links a:hover {
  color: #006699;
}
