.form-container {
  background-color: #121212;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  padding-top: 0;
}

.form-row {
  display: flex;
  gap: 10px;
}
input,
textarea {
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #666;
  outline: 0;
  height: 50px;
  background-color: #fff0;
  color: #fff;
  border-radius: 0 0 0 0;
  margin: 0 0 25px 0;
  font-family: "Kanit", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.5px;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: white;
}

input::placeholder,
textarea::placeholder {
  font-weight: bold;
  color: white;
}

.form-error-span {
  line-height: 1.33;
  text-align: left;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}

.form-sub-btn {
  background-color: #121212;
  color: white;
  padding: 20px 40px 20px 40px;
  border: 1px solid white;
  border-radius: 10px;
  cursor: pointer;
}

.form-sub-btn:hover {
  background-color: #fff;
  color: #121212;
}
.contact {
  background-color: #121212;
  color: white;
  padding-top: 6%;
  display: flex;
  justify-content: center;
}
.contact-heading {
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 100px;
}

.contact-prompt {
  font-family: "Kanit", Sans-serif;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-prompt-text {
  font-size: 26px;
  font-family: "Kanit", Sans-serif;
  font-weight: 800;
  line-height: 1.22em;
  width: 75%;
}

.contact-prompt-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-prompt-phone,
.contact-prompt-email {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid white;
}
.contact-body {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contact-body-bottom {
  display: flex;
  align-items: flex-start;
}
footer {
  gap: 40px;
  padding-top: 50px;
}

@media (max-width: 600px) {
  .contact {
    padding-top: 15%;
  }
  .contact-body {
    width: 90%;
  }
  .contact-heading {
    font-size: 40px;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .contact-body-top {
    display: flex;
    align-items: center;
  }
  .contact-body-bottom {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .contact-prompt {
    width: 90%;
  }

  .contact-prompt-text {
    width: 100%;
    color: white;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 600;

    line-height: 1.2;
    font-size: 18px;
  }
  .form-container {
    width: 90%;
  }
}
