@font-face {
  font-family: 'Futura';
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/FuturaPTMedium.woff2) format('woff2');

}

@font-face {
  font-family: 'FuturaBold';
  font-style: normal;

  src: url(../fonts/FuturaPTHeavy.woff2) format('woff2');

}

@font-face {
  font-family: 'FuturaLight';
  font-style: normal;
  src: url(../fonts/FuturaPTLight.woff2) format('woff2');

}

:root {
  /* https://htmlcolorcodes.com/color-picker/ tints & shades */
  --font-futura: 'Futura', sans-serif;
  --font-futura-bold: 'FuturaBold', sans-serif;
  --font-futura-light: 'FuturaLight', sans-serif;
}

body {
  background: url('../assets/Ellipse5.png') no-repeat center center;
 background-size: 100vh auto ;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: var(--font-futura);
  background-color: #00697F;
}

.form-container {
  border-radius: 10px;
  padding: 0;
  width: 85%;
  max-width: 390px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.form-header {
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-futura-bold);
  color: #00697F;
  font-weight: 400;
  line-height: 50px;
  margin-top: 0;
  padding-top: 90px;
}

#detailsForm{
  padding-bottom: 90px;
}

.form-floating label {
  font-size: 14px;
}

.form-control {
  background-color: transparent !important;
  border: unset;
  border-radius: 0px;
  border-bottom: 1px #6CACBA solid;
  font-size: 23px;
  font-weight: 450;
  word-wrap: break-word;
  color: #6CACBA !important;
  padding: 0 !important;
  margin-top: 30px;
}

.form-control::placeholder {
  color: #6CACBA;
}

.custom-checkbox label {
  font-size: 12px;
  color: #161616;
}

.btn-send {
  background-color: #EC7A23 !important;
  color: white !important;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  display: block;
  padding: 10px 60px;
  font-size: 28px;
  line-height: 1;
  font-family: var(--font-futura);
  font-weight: 400;
  word-wrap: break-word;
  border-radius: 50px;
}

.privacy-note {
  font-size: 10px;
  color: #161616;
}

.note {
  color: #00697F;

  font-size: 12px;
  font-family: var(--font-futura);
  font-weight: 400;
  line-height: 15.60px;
  word-wrap: break-word
}


.imputField {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

#titleInput {
  max-width: 60px;
}

.form-check-input {
  height: 27px;
  width: 27px;
  background-color: transparent;
  border-color: #00697F !important;
  accent-color: #00697F !important;
  border: 2px solid;
  margin-right: 10px;
}

input.invalidCheck {
  border: solid 2px #FF4D4D !important;
}

.form-check-input:checked {
  background-color: #00697F !important;
}

.form-control:focus {
  box-shadow: unset !important;
}

.form-check {
  margin-bottom: 42px !important;
}

input.invalid {
  border-color: #FF4D4D !important;
}


#thankYouMessage {
  color: #00697F;
  margin-top: 44px;
  position: absolute;
  background: rgba(0, 105, 127, 0.56);
  backdrop-filter: blur(4.70px);
  width: 100vw;
  height: 100ch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.middleContent {
  display: flex;
  gap: 25px;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  max-width: 85vw;
  max-height: 85vw;
  justify-content: center;
}

#thankYouMessage img {
  width: 50px;
  height: auto;
}

#thankYouMessage h3 {
  font-family: var(--font-futura-bold);
  color: black;
}

#thankYouMessage p {
  font-family: var(--font-futura-light);
  color: black;
  font-size: 18px;
  font-weight: 600;
}

#thankYouMessage p b{
  font-family: var(--font-futura-bold);
}

@media (max-width: 400px) {
  .custom-checkbox label {
    font-size: 10px;
  }
}

@media (max-height: 850px) {
  body {
      background-size: 110vh auto ;
  }
}

@media (max-height: 700px) {
  body {
      background-size: 120vh auto ;
  }
}