 /* ================================
   EHIS PROFESSIONAL FORM UI THEME
================================ */

* {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background: #f4f6fb;
}

.section-title {
    text-transform: uppercase;
}

/* Wrapper */
.registration-wrapper {
  padding: 40px 0;
  min-height: 100vh;
}

/* Card */
.registration-card {
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  background: #fff;
  overflow: hidden;
}

/* Header */
.registration-card .card-header {
  background: linear-gradient(135deg,#198754,#157347);
  color: #fff;
  padding: 18px 24px;
}

.registration-card .card-header h4 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

/* Labels */
.form-label {
  font-weight: 600;
  font-size: 13px;
  color: #495057;
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  border: 2px solid #dee2e6;
  transition: all .15s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 .15rem rgba(25,135,84,.15);
}

/* Section Title */
.section-title {
  margin: 22px 0 14px;
  padding: 10px 14px;
  background: #f1fdf6;
  border-left: 5px solid #198754;
  font-weight: 700;
  font-size: 14px;
  color: #198754;
  border-radius: 6px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg,#0d6efd,#0b5ed7);
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-weight: 600;
}

.btn-success {
  background: linear-gradient(135deg,#198754,#157347);
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-weight: 600;
}

.btn-outline-secondary {
  border-radius: 12px;
  border-width: 2px;
}

/* =====================================
   EHIS PREMIUM CHECKBOX & RADIO DESIGN
===================================== */

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #198754;
  background: #fff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: all .15s ease-in-out;
}

/* Checkbox */
.form-check-input[type="checkbox"] {
  border-radius: 4px;
}

/* Radio */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

/* Tick / Dot */
.form-check-input::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease-in-out;
  background: #198754;
}

/* Checkbox tick */
.form-check-input[type="checkbox"]::before {
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Radio dot */
.form-check-input[type="radio"]::before {
  border-radius: 50%;
}

/* Checked */
.form-check-input:checked::before {
  transform: scale(1);
}

/* Hover */
.form-check-input:hover {
  border-color: #157347;
}

/* Focus */
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 .15rem rgba(25,135,84,.25);
}

/* Label */
.form-check-label {
  font-weight: 500;
  cursor: pointer;
  color: #212529;
}


/*===================