* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Custom-font";
}

body {
  background-color: #e0f1e7;
}

@font-face {
  font-family: "Custom-font";
  src: url("./Karla-VariableFont_wght.ttf");
}

.Overall-Container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  background-color: white;
  margin: 30px 20px;
  border-radius: 10px;
  padding: 10px 15px;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin: 20px 10px;
  color: black;
}

.input {
  padding: 10px 10px;
  margin-bottom: 20px;
  margin-top: 5px;
  border: 1.5px solid #75968b;
  border-radius: 5px;
  font-size: 20px;
}

.input-div-1,
.input-div-2 {
  display: flex;
  flex-direction: column;
}

.radio {
  margin-bottom: 20px;
  margin-top: 5px;
  border: 1.5px solid #75968b;
  border-radius: 5px;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 50px;
  cursor: pointer;
}

#General-Enquiry,
#Support-Request,
.pointer {
  cursor: pointer;
}

#Message {
  height: 250px;
  width: 100%;
  margin: 10px 0px;
}

.consent-checkbox {
  padding: 10px;
}

span {
  color: #75968b;
}

.submit-button {
  padding: 20px 20px;
  width: 100%;
  margin: 10px 0px;
  background-color: #0c7d69;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}


/* Responsive Design for Mobile Devices */

@media (min-width: 1024px) {
  * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Custom-font";
  }

  body {
    background-color: #e0f1e7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  @font-face {
    font-family: "Custom-font";
    src: url("./Karla-VariableFont_wght.ttf");
  }

  .Overall-Container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    margin: 80px 20px;
    border-radius: 10px;
    padding: 10px 15px;
    width: 65%;
  }

  h1 {
    margin-bottom: 20px;
  }

  .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin: 10px 40px;
    color: black;
  }

  .input {
    padding: 10px 10px;
    margin-bottom: 20px;
    margin-top: 5px;
    border: 1.5px solid #75968b;
    border-radius: 5px;
    font-size: 20px;
  }


  .input-div-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .input-div-2 {
    display: flex;
    flex-direction: column;
    width: 48%;
  }

  .radio {
    margin-bottom: 20px;
    margin-top: 5px;
    border: 1.5px solid #75968b;
    border-radius: 5px;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-left: 50px;
    cursor: pointer;
  }

  #General-Enquiry,
  #Support-Request,
  .pointer {
    cursor: pointer;
  }

  #Message {
    height: 300px;
    width: 100%;
    margin: 10px 0px;
  }

  .consent-checkbox {
    padding: 10px;
  }

  span {
    color: #75968b;
  }

  .submit-button {
    padding: 20px 20px;
    width: 100%;
    margin: 10px 0px;
    background-color: #0c7d69;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .attribution {
    font-size: 11px;
    text-align: center;
  }

  .attribution a {
    color: hsl(228, 45%, 44%);
  }
}