/* General Form Styling */


/* Labels */
form label {
  margin-bottom: 5px;
  color: #000;
}

/* Input, Textarea, and Select Styling */
form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  /* background-color: #fff; */
  font-size: 16px;
  outline: none;
  background-clip: border-box;
  transition: border-color 0.3s ease-in-out;
}

/* Focus State */
form .form-control:focus {
  border-color: #bebebe;
  outline: 0;
  box-shadow: -3px 3px 6px rgba(134, 134, 134, 0.4);
}

/* Select Dropdown */
form select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path fill="%2339a8af" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
  padding-right: 30px;
}
form input::placeholder {
  color: #191919;
}

/* Button Styling */
form .btn {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background-color: #191919;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form .btn:hover, form .btnf:hover {
  background-color: #313131;
  color: #e9e9e9;
}
#step2 input[type="checkbox"] {
  transform: scale(1.2);
}
#step2 input[type="checkbox"]:checked {
  background-color: #e9a43c;
  border-color: #191919;
}
#step2 .form-check-input:checked {
    background-color: #e9a43c;
    border-color: #e9a43c;
}