@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #001214;
  font-family: "Space Grotesk";
}

.contact-form {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 5rem;
  padding: 2rem;
}

.left-text p {
  color: #bdff69;
  font-size: 45px;
  padding-bottom: 1rem;
}

.right-text {
  padding: 1rem;
  align-self: flex-start;
  color: white;
  /* margin-left: 1rem; */
}

.form-view {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-view form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form-row input {
  flex: 1;
  padding: 22px 25px;
  font-size: 1.2rem;
  color: #d7ddd3;
  background: #092023; /* Dark background like screenshot */
  border: 1px solid #d7ddd3;
  border-radius: 12px;
  outline: none;
}

textarea {
  width: 96%;
  height: 180px;
  padding: 22px 25px;
  font-size: 1.2rem;
  color: #d7ddd3;
  background: #092023;
  border: 1px solid #d7ddd3;
  border-radius: 12px;
  outline: none;
  resize: vertical;
  margin-bottom: 35px;
}

button {
  background: #f2f3e7; /* Light cream button */
  padding: 18px 55px;
  border: none;
  font-size: 1.2rem;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 0.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 1rem !important;
  }
  .form-row {
    flex-direction: column;
    gap: 18px;
  }

  button {
    width: 100%;
  }
  .form-view form {
    padding-top: 2rem;
  }

  .text-div {
    flex-direction: column;
    gap:0px !important;
    padding: 1rem;
  }

  textarea {
    width: 82%;
  }
  .right-text{
    padding:0px;
  }

  .left-text p {
  color: #bdff69;
  font-size: 30px !important;
  /* padding-bottom: 1rem; */
  }
}
