    * {
      box-sizing: border-box;
    }

    body {
       
      background-color: #01509b;
      padding: 10px;
      letter-spacing: -0.48px;
    }

    h2{
      font-family:'Nunito' ;
      font-size: 2.2em;
      font-weight: 800;
      letter-spacing: -1.5px;
      color: #0A5B37;
      text-align: center;
      margin-bottom: 20px;
    }

    div {
      background-color: #fff;
      margin: 1px auto 14px auto;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      
    }

    .form-container {
      background-color: #fff;

      
    }
    .logo-container {
      text-align: center;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea, select {
        background-color: #EFEFEF;
        border-radius: 25px 25px 25px 25px;
        padding: 18px 30px 22px 32px;
        transition: all ease-out 0.3s;

      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
    }
    div p{
      padding: auto 25px auto 25px;
      text-align: center;
      font-family: arial, sans-serif;
      letter-spacing: initial;
      font-size: larger;
    }

    textarea {
      resize: vertical;
      height: 120px;
    }

    img {
      max-width: 90%;
      height: auto;
    }

    button {
      width: 100%;
      padding: 12px;
      background-color: #000fad;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 15px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #0A5B37;
    }

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


    @media (max-width: 580px) {
      .form-container {
        padding: 20px;
      }

      input, textarea, button, select,tel {
        font-size: 14px;
        font: inherit;
        margin: 4px;
        margin-bottom: 20px;
      }
    }