/* Form Container */
.about-two__form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
}
#leadForm h3 {
  text-align: center;
}
/* Form Row */
.about-two__form .form-row {
  margin-bottom: 15px;
}

/* Inputs + Select + Textarea */
.about-two__form input,
.about-two__form select,
.about-two__form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

/* Focus Effect */
.about-two__form input:focus,
.about-two__form select:focus,
.about-two__form textarea:focus {
  border-color: #ff6b00;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

/* Placeholder */
.about-two__form input::placeholder,
.about-two__form textarea::placeholder {
  color: #999;
}

/* Button */
.about-two__form .eduhive-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #fff;
  padding: 14px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button Hover */
.about-two__form .eduhive-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

/* Error Message */
#mess2 {
  background: #ffe6e6;
  color: #d60000;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 13px;
}

/* Success Message */
#messsucess2 {
  background: #e6ffed;
  color: #0a8a3a;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 13px;
}

#otpBox input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

#mess2,
#messsucess2 {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

#mess2 {
  background: #ffe6e6;
  color: red;
}

#messsucess2 {
  background: #e6ffed;
  color: green;
}
