/* ================= AUTH UI ================= */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f4f6f9;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.auth-card h1 {
  margin-bottom: 6px;
}

.auth-subtitle {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.auth-form .form-group {
  margin-bottom: 14px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  border-color: #1f6fff;
}

.btn-primary.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

.auth-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}
