@font-face {
  font-family: gilroy;
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: mazius;
  src: url('../fonts/Mazius-Extraitalic.121a71a7.otf');
  font-weight: 500;
  
}
@font-face {
  font-family: gilroy-lt;
  src: url('../fonts/Gilroy-Light.ttf');
}
@font-face {
  font-family: mons;
  src: url('../fonts/Montserrat-Black.ttf');
}


/* From Uiverse.io by glisovic01 */ 
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: gilroy;
}

html,body{
  width: 100%;
  height: 100%;
}

body {
  background-color: #FCFAF8;
  /* Vertically center */
}

.form_heading{
  padding: 120px 40px;
  background-color: #333333;
}

.form_heading h2{
  color: #FCFAF8;
  text-align: center;
  font-family: mons;
  letter-spacing: 1px;
  font-size: 4vw;
}

.form_heading span{
  font-family: mons;
  color: #14CF93;
}


.form_heading p{
  margin-top: 10px;
  color: #FCFAF8;
  text-align: center;
}


.contact{
  z-index: 999;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;   
}



.form_contaier {
  width: 50%;
}

.input-container {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.input-container label {
  color: #333333; 
  font-size: 12px; 
  font-weight: 600; 
  margin-left: 7px;
  background-color: #FCFAF8;
  padding: 0 3px;
  width: fit-content;
}

.input-container label span {
  color: red;
}

.input-container input,select,textarea {
  border: 1px solid #333333; 
  padding: 11px 10px;
  font-size: 12px;
  background-color: #FCFAF8;
  border-radius: 5px;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
}

.input-container input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.input-container input:focus {
  border-color: #333333; /* Darker blue */
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
}

input[type="submit"] {
  background-color: #333333;
  color: #FCFAF8;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #14CF93;
}


.formMessage {
  text-align: center;
}

@media only screen and (min-width:321px) {
    .form_heading{
    padding: 120px 40px 100px 40px;
    background-color: #333333;
    }
    
  .form_heading h2 {
    font-size: 34px;
  }

  .form_heading p{
    font-size: 12px;
    text-align: center;
  }

  .form_contaier {
    width: 100%;
     padding: 60px 20px;
    min-height: auto;
  }
  

  .input-container input {
    width: 100%;
  }
}


@media only screen and (min-width: 480px) {
    .form_heading {
        padding: 80px 40px 60px 40px;
        background-color: #333333;
    }
    
  .form_heading p{
    font-size: 12px;
    text-align: center;
  }

  
  .form_contaier {
    width: 100%;
    padding: 80px 40px;
    min-height: auto;
  }
  

  .input-container input {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
    .form_heading{
    padding: 100px 70px 80px 70px;
      background-color: #333333;
    }
    
  .form_heading p{
    font-size: 13px;
    text-align: center;
  }  
  
  .form_heading h2 {
      font-size: 60px;
    }



    .form_contaier {
      width: 50%;
      padding: 100px 40px;
      min-height: auto;
    }
  

  .input-container input {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
    
  .form_heading p{
    font-size: 14px;
    text-align: center;
  } 
  
  .form_heading h2 {
    font-size: 70px;
  }
  
  .form_contaier {
    width: 50%;
    padding: 100px 40px;
  }

  .input-container input {
    width: 100%;
  }
}