*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f6f8fa;
}

.auth-register-page {
  max-width: 440px;
  width: 100%;
  margin: 40px auto;
  padding: 24px 22px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 420px) {
  .auth-register-page {
    margin: 20px 12px;
    padding: 20px 16px;
  }
}

.auth-register-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 6px;
}

.auth-register-desc {
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

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

.auth-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

.auth-input {
  width: 100%;
  padding: 11px 12px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.auth-btn {
  margin-top: 14px;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.auth-btn:hover {
  background: #1e40af;
}

.auth-btn:active {
  transform: scale(0.98);
}

.auth-register-footer {
  margin-top: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: #374151;
}

.auth-register-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.auth-register-footer a:hover {
  text-decoration: underline;
}
