/* .contactus{
    display: flex; */
    /* flex-direction: column; */
    /* align-items: center;
    justify-content: center;
} */

.fields{
    display: flex;
    justify-content: center;
    align-items: center;

}

.name{
    padding: 10vh;
}

.number{
    padding: 10vh;
}

.mail{
    padding: 10vh;
}

.contacttext{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 1vh;
    margin-bottom: 0;
    padding: 1vh;
    padding-bottom: 0;
    /* background-color: #FBFAF8; */
}

.form__group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 180px;
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 17px;
    color: black;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 17px;
    cursor: text;
    top: 20px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #9b9b9b;
    pointer-events: none;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #116399, #38caef);
    border-image-slice: 1;
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #38caef;
    font-weight: 700;
  }
  
  /* reset input */
  .form__field:required, .form__field:invalid {
    box-shadow: none;
  }