
.content {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    font-family: "Urbanist Thin";
    background-image: url(/static/lagediapp/images/WebBackground.png);
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  
  .fieldWrapper {
    display: grid;
  }
  
  .fieldWrapper label {
    display: grid;
    gap: 20px;
    font-family: "Urbanist Thin";
    font-size: clamp(1rem, 5vw, 1.6rem);
  }
  
  .fieldWrapper input, textarea {
    background: #FEF9F5;
    border: none;
    border-bottom: 2px solid #0000005e;
    width: 300px;
    padding-top: 10px;
  }
  
  .fieldWrapper textarea {
    height: 100px;
  }
  
  .form-control {
    border: none;
    border-bottom: 1px solid #d9d9d9;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }
  .form-control:active,
  .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000;
  }
  
  .btn,
  .form-control {
    height: 55px;
  }
  
  form.border-right {
    padding-right: 6rem !important;
  }
  @media (max-width: 991.98px) {
    form.border-right {
      padding-right: 0 !important;
      border-right: none !important;
    }
  }
  
  label.error {
    font-size: 12px;
    color: red;
  }
  
  #message {
    resize: vertical;
  }
  
  #form-message-warning,
  #form-message-success {
    display: none;
  }
  
  #form-message-warning {
    color: #b90b0b;
  }
  
  #form-message-success {
    color: #55a44e;
    font-size: 18px;
    font-weight: bold;
  }
  
  .submitting {
    float: left;
    width: 100%;
    padding: 10px 0;
    display: none;
    font-weight: bold;
    font-size: 12px;
    color: #000;
  }
  
  textarea:focus, input:focus{
    outline: none;
  }
  .button-contact {
    border-radius: 0%;
    width: 30%;
    font-size: 1.3rem;
  }
  
  .text-form {
    font-family: "Urbanist Thin";
    font-size: clamp(1rem, 5vw, 1.5rem);
  }
  
  .text-form h3 {
    font-family: "Urbanist Medium";
    font-size: clamp(1rem, 5vw, 1.7rem);
  }
  
  .contact-info {
    font-family: "Urbanist Medium";
    font-size: clamp(1rem, 5vw, 1.4rem);
  }

  .contact-info p {
    font-family: "Urbanist Thin";
  }
  .content h2 {
    font-family: "Urbanist Medium";
    font-size: clamp(2.5rem, 5vw, 2.9rem);
    padding-top: 130px;
    text-align: center;
  }
  

  @media screen and (min-width: 600px) {
    .fieldWrapper input, textarea {
        width: 500px;
      }
  }
  @media screen and (max-width: 600px) {
    .content h2 {
        text-align: start;
    }
  }  
  @media screen and (min-width: 1000px) {
    .content {
        height: 100vh;
    }
    .content h2 {
        padding: 0;
        text-align: center;
    }
    .fieldWrapper input, textarea {
        width: 400px;
      }
  }
  @media screen and (min-width: 1400px) {
    .fieldWrapper input, textarea {
        width: 500px;
      }
  }