.contact-container {
  grid-template-columns: 1fr 1fr;
}

.form-row {
  grid-template-columns: 1fr 1fr;
}

input,
textarea {
  width: 100%;
  background: #1a1a1a;
  border: 0.0625rem solid #404040;
  border-radius: 0.5rem;
  padding: 0.7rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-family: "Roboto", sans-serif;
  transition: border-color 0.3s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #caf291;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #8f8f8f;
}
input::placeholder,
textarea::placeholder {
  color: #8f8f8f;
}

.submit-btn {
  width: 100%;
  background: #caf291;
  color: #8f8f8f;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.submit-btn:hover {
  background: #caf291;
  transform: translateY(-2px);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact-container {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .profile-card .profile-image {
    width: 11.25rem;
    height: 11.25rem;
  }
  .profile-card .profile-info h1 {
    font-size: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .profile-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .profile-card .profile-image {
    width: 10rem;
    height: 10rem;
  }
  .profile-card .profile-info h1 {
    font-size: 1.6rem;
  }
  .profile-card .profile-info .title {
    font-size: 1rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .contact-card .icon-wrapper {
    width: 3.125rem;
    height: 3.125rem;
  }
  .contact-card .icon-wrapper svg {
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .contact-card .contact-info h3 {
    font-size: 1.1rem;
  }
  .form-card {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-container {
    padding: 1.25rem;
    gap: 1rem;
  }
  .profile-card {
    padding: 1rem;
  }
  .profile-card .profile-image {
    width: 7.5rem;
    height: 7.5rem;
  }
  .profile-card .profile-info h1 {
    font-size: 1.4rem;
  }
  .profile-card .profile-info .title {
    font-size: 0.9rem;
  }
  .profile-card .profile-info .description {
    font-size: 0.9rem;
  }
  .contact-card {
    padding: 1rem;
    gap: 1rem;
  }
  .contact-card .icon-wrapper {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .contact-card .icon-wrapper svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .contact-card .contact-info h3 {
    font-size: 0.5rem;
  }
  .contact-card .contact-info p {
    font-size: 0.5rem;
  }
  .form-card {
    padding: 1rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-row {
    margin-bottom: 1rem;
  }
  label {
    font-size: 0.9rem;
  }
  input,
  textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  .privacy-notice {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=contact.css.map */