/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  
}

h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.text-primary {
  color: #ff6a00;
}

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

.mb-7 {
  margin-bottom: 2rem;
}
input#otp {
    width: 120px !important;
}

/* Form Container */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

/* Form Labels & Inputs */
.form-label {
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}

.form-control,
.form-select {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #ff6a00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

.invalid-feedback {
  color: red;
  font-size: 0.875rem;
  margin-top: 5px;
}

/* OTP Section */
.otp-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

#otp {
  flex-grow: 1;
}

#verifyOtp {
  white-space: nowrap;
 
}

#resendOtp {
  font-size: 0.875rem;
  color: #ff6a00;
  cursor: pointer;
  
}

/* Submit Button */
#submitButton {
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submitButton:hover {
  background-color: #e65a00;
}

/* Responsive Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-6 {
  flex: 1 1 45%;
  
}

.col-4 {
  flex: 1 1 100%;
  max-width: 300px;
  margin-top: 20px;
}

form select.form-select, form .form-control {
    background-color: #b9b3bfa8 !important;
    border: 1px solid #414141;
    color: #000 !important;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }

  .col-md-6,
  .col-4 {
    flex: 1 1 100%;
  }
}