@charset "UTF-8";
h1 {
  font-size: 24px;
}

h2 {
  font-size: 18px;
  margin-top: 30px;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 0px !important;
  background-color: #f4f4f4;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid rgb(184, 45, 45) !important;
  outline: none;
}

textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc !important;
  border-radius: 0px;
  background-color: #f4f4f4 !important;
}

.field {
  margin-bottom: 30px;
}

.submit-btn {
  background-color: rgb(184, 45, 45);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.32;
  padding: 10px 25px;
  border-radius: 0px;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 10px;
}

/* Hide default radio button */
.custom-radio input[type=radio] {
  display: none;
}

/* Custom radio style */
.custom-radio label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
}

/* Outer circle */
.custom-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: white;
}

/* Inner dot - appears when selected */
.custom-radio input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: rgb(184, 45, 45); /* 👈 Change this to your desired dot color */
  border-radius: 50%;
}/*# sourceMappingURL=hotel-registration-form.css.map */