/* ===== Background and Typography ===== */
.register-page {
  background: linear-gradient(to bottom right, #eef3ff, #dbe6ff);
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  padding: 20px;
}

/* ===== Card Container ===== */
.register-card {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Headings ===== */
.register-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.register-card p {
  font-size: 0.95rem;
  color: #6c757d;
}

/* ===== Input and Select Fields ===== */
input.form-control,
select.form-select {
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  border: 1px solid #ccd6f6;
  background-color: #f8faff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input.form-control:focus,
select.form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
  background-color: #ffffff;
  outline: none;
}

/* ===== Labels ===== */
.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}

/* ===== Checkbox ===== */
.form-check-input {
  border-radius: 4px;
  cursor: pointer;
}

.form-check-label {
  font-size: 0.85rem;
  color: #555;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #a9aeb3; /* Bootstrap's muted color */
  font-size: 0.9rem;
}

/* ===== Button ===== */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* ===== Links ===== */
a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Utility spacing (Optional redundancy for clarity) ===== */
.mt-3 {
  margin-top: 1rem !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-center {
  text-align: center !important;
}
