body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 100vh;
  margin: 0;

  /* Full page gradient */
     background: linear-gradient(135deg, #88a1ab, #203a43, #4dafd9);

  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;
  background: rgba(0,0,0,0.5);
  border-radius: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.registration-section .form-title {
  text-align: center;
  font-size: 2rem;
  color: #5DADE2;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Form rows: side-by-side fields */
.registration-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.registration-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.registration-form label {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #00e0ff;
}

.registration-form input,
.registration-form select {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.registration-form input[type="file"] {
  padding: 5px 0;
}

.registration-form select {
  background: #fff;
  color: #000;
}

/* Submit Button */
.submit-btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: #5DADE2;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #00e0ff;
  transform: translateY(-2px);
}

/* Form Note */
.form-note {
  margin-top: 15px;
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
  color: #fff;
}

/* Mobile View */
@media (max-width: 768px) {
  .registration-form .form-row {
    flex-direction: column;
  }
}
.highlight {
  color: #00e0ff;  /* Bright blue to match your theme */
  font-weight: 700; /* Bold */
}
