/* =========================
   WRAPPER
========================= */
.signup-wrapper {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
}

/* =========================
   LEFT PANEL
========================= */
.signup-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: radial-gradient(circle at top left, #e0f2fe, #ffffff);
}
.signup-left .brand-content {
  max-width: 450px;
}
.signup-left .brand-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e3a8a;
}
.signup-left .brand-content p {
  color: #3b82f6;
}
.signup-left .trust-signals {
  margin-top: 2rem;
}
.signup-left .trust-signals p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #1e3a8a;
}
.signup-left .trust-signals p i {
  color: #0ea5e9;
}

/* =========================
   RIGHT PANEL
========================= */
.signup-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* =========================
   CARD
========================= */
.signup-card {
  width: 100%;
  max-width: 520px;
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.12);
  transition: transform 0.2s ease;
}
.signup-card:hover {
  transform: translateY(-3px);
}

/* =========================
   SECTION UI
========================= */
.form-step {
  display: none;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #7dd3fc;
}
.form-step.active {
  display: block;
}
.form-step .section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0ea5e9;
  margin-bottom: 0.6rem;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.step-indicator .step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #bae6fd;
  border: 1px solid #7dd3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #3b82f6;
}
.step-indicator .step.active {
  background: #0ea5e9;
  color: white;
}

/* =========================
   INPUTS
========================= */
.form-control,
.form-select {
  border: 1px solid #7dd3fc;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  background: #bae6fd;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
  background: #bae6fd;
}

.pe-5 {
  padding-right: 2.5rem !important;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-check .form-check-input {
  margin-top: 0;
}
.form-check .form-check-label {
  margin-bottom: 0;
}
.form-check .input-error {
  width: 100%;
  margin-left: 0;
}

/* =========================
   INLINE VALIDATION
========================= */
.input-error {
  display: block;
  font-size: 0.75rem;
  margin-top: 2px;
  color: #ef4444;
  min-height: 10px;
}

.form-control.error,
.form-select.error {
  border-color: #ef4444;
}

.form-control.success,
.form-select.success {
  border-color: #22c55e;
}

.form-control.error:focus {
  box-shadow: 0 0 0 0.15rem rgba(239, 68, 68, 0.2);
}

/* =========================
   ACCOUNT TYPES
========================= */
.account-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.account-types label {
  border: 1px solid #7dd3fc;
  padding: 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  background: #bae6fd;
}
.account-types label input {
  margin-right: 6px;
}
.account-types label:hover {
  border-color: #0ea5e9;
}

/* =========================
   PASSWORD ICON
========================= */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #3b82f6;
}

.form-message {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 8px;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .signup-wrapper {
    flex-direction: column;
  }
  .signup-left {
    display: none;
  }
  .signup-card {
    border-radius: 0;
    min-height: 70vh;
  }
}

/*# sourceMappingURL=signup.css.map */
