/* =============================================
   Freo Now — Signup Form
   ============================================= */

.signup-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label { font-weight: 600; margin-bottom: 0.5rem; }

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 45, 72, 0.1);
}

/* ── Signup on dark ocean floor ── */
.signup-gradient .section-title,
.signup-gradient .section-subtitle {
  color: var(--white);
}

.signup-gradient .container {
  position: relative;
  z-index: 1;
}

.signup-gradient .signup-form-container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--dark);
}
