.form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
  margin-bottom: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #000;
  border-radius: 6px;
  font-size: 16px;
  background: transparent;
}

input::placeholder,
textarea::placeholder {
  font-family: "Albert Sans", sans-serif;
  color: #000;
}

textarea {
  height: 160px;
  resize: vertical;
  font-family: "Albert Sans", sans-serif;
}

.check {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  margin: 18px 0;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  font-weight: 400;
}

.check input {
  opacity: 0;
  position: absolute;
}

.check span {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 4px;
}

.check input:checked + span {
  background: #000;
}

.check a {
  color: #000;
  text-decoration: underline;
}

.submit-btn {
  background: #000;
  color: #fff;
  padding: 18px 40px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  margin-top: 25px;
  cursor: pointer;
  float: right;
}

.submit-btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
    float: none;
  }
}
