@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.phoneWrap {
  .iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
  }
}

.container {
  width: 100%;
}

.mb-3 {
  margin-bottom: 15px;
}

.main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08708a65;
  padding: 1%;
  width: 100%;
}

.wrap {
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 13px 4px rgba(0, 0, 0, 0.479);
}

.image {
  width: 100%;
}

.form-wrapper {
  margin: 0 auto;
  padding: 25px;
}

.slot-card-inline {
  background: #f0f7f9;
  border: 1px solid #07708a3d;
  border-radius: 15px;
  padding: 12px 10px;
  margin-top: 34px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.slot-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.4rem;
  color: #444;
  gap: 5px;
}

.slot-row strong {
  font-size: 1.6rem;
}

.img {
  display: block;
  margin: 0 auto 45px;
}

.input-wrapp>div {
  display: flex;
  gap: 20px;
}

.input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.input-flex>div {
  width: 50%;
}

.form-input {
  width: 100%;
  padding: 13px;
  border-radius: 15px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  outline: none;
  resize: none;
  overflow: hidden;
}

.form-input::placeholder,
select.form-input,
.form-input[type="date"]::-webkit-datetime-edit-text,
.form-input[type="date"]::-webkit-datetime-edit-month-field,
.form-input[type="date"]::-webkit-datetime-edit-day-field,
.form-input[type="date"]::-webkit-datetime-edit-year-field {
  color: rgb(0, 0, 0);
}

.form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.479);
}

.form-label {
  color: #07074d;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.radio-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-label {
  font-size: 14px;
  line-height: 24px;
  color: #07074d;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #dde3ec;
  border-radius: 50%;
}

.radio-label .input-radio:checked~.radio-checkmark {
  background-color: #6a64f1;
}

.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-label .input-radio:checked~.radio-checkmark:after {
  display: block;
}

.radio-label .radio-checkmark:after {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.btnWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn {
  text-align: center !important;
  font-size: 16px !important;
  border-radius: 30px !important;
  padding: 12px 75px !important;
  border: 1px solid #08708a !important;
  font-weight: 700 !important;
  background-color: #08708a !important;
  color: white !important;
  cursor: pointer !important;
  margin-top: 25px !important;
  transition: all 0.2s linear !important;
}

.btn:hover {
  transform: scale(1.08) !important;
  color: #08708a !important;
  background-color: white !important;
  border: 1px solid #08708a !important;
}

.btn-sm {
  padding: 10px 30px !important;
}

.w-45 {
  width: 45%;
}

.text-danger {
  color: red;
}

.text-success {
  color: green;
}

.form-footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #07708a3d;
  color: #555;
  font-size: 13.5px;
  line-height: 1.6;
}

.form-footer-note p {
  margin-bottom: 10px;
}

.form-footer-note .contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #08708a;
  font-weight: 500;
}

.form-footer-note a {
  color: #08708a;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .input-flex {
    flex-direction: column;
  }

  .input-flex>div {
    width: 100%;
  }

  .slot-card-inline {
    margin-top: 10px;
  }

  .form-footer-note .contact-grid {
    flex-direction: column;
    gap: 8px;
  }

  #countryCode {
    padding: 1px 12px;
  }
}