
@font-face {
    font-family: 'Meta';
    font-style: normal;
    font-weight: 900;
    src:     url(../fonts/MetaPro-CondBook.woff2) format('woff2');
            
}

@font-face {
    font-family: 'MetaBold';
    font-style: normal;
    font-weight: 900;
    src:     url(../fonts/MetaPro-Bold.woff2) format('woff2');
            
}

@font-face {
    font-family: 'MetaBoldBlack';
    font-style: normal;
    font-weight: 900;
    src:     url(../fonts/MetaPro-Black.woff2) format('woff2');
            
}

:root {
    /* https://htmlcolorcodes.com/color-picker/ tints & shades */
    --font-meta: 'Meta', sans-serif;
    --font-meta-bold: 'MetaBold', sans-serif;
    --font-meta-bold-black: 'MetaBoldBlack', sans-serif;

}

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

.form-container {
  background-color: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(11.12px);
  border-radius: 10px;
  padding: 28px;
  width: 94%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

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

.form-header {
  font-weight: bold;
  font-size: 32px;
  font-family: var(--font-meta-bold);
  color: #00408B;
  font-weight: 400;
  line-height: 41.60px;
  margin-top: 44px;
  margin-bottom: 22px;
}

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

.form-control {
  font-size: 14px;
  color: #00408B;
  background-color: transparent;
  max-width: 210px;
   border-radius: 5px;
    border: 1px #00408B solid;
}

.imputField label{
  font-size: 16px;
  font-family: var(--font-meta-bold);
  font-weight: 400;
  line-height: 20.80px;
  word-wrap: break-word;
  color: #00408B;
}

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

.btn-send {
  background-color: #003B8F !important;
  color: white !important;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  display: block;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 16px;
  font-size: 24px;
  font-family: var(--font-meta);
  font-weight: 400;
  word-wrap: break-word;
  border-radius: 10px;
}

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

.note {
  color: #00408B;

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

.icon-top {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.form-check-input{
  background-color: transparent;
  border-color: #00408B !important;
  accent-color: #00408B !important;
}

input.invalid {
    border: solid 1px red !important;
}
input.invalidCheck {
    outline: solid 1px red !important;
}

#thankYouMessage{
  color: #00408B;
  margin-top: 44px;
}

#thankYouMessage h2{
   font-family: var(--font-meta-bold);
}

#thankYouMessage h4{
   font-family: var(--font-meta-bold);
}
@media (max-width: 767.98px) {
    body{
       background-size: 100vw auto ;
    }
}