.auth-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.auth-form h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-form span {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  display: block;
}

.auth-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  font-size: 14px;
}

.auth-input:focus {
  outline: none;
  border-color: #2563eb;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

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