.contact_form_container,
.form_sent_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 28px 20px;
  border-radius: 16px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.form_sent_container {
  display: none;
}

.fade_out_state {
  opacity: 0 !important;
  transform: translateY(15px) !important;
  pointer-events: none;
}

.contact_form_container input,
.contact_form_container textarea {
  width: 100%;
  box-sizing: border-box;
}

.contact_form_container a {
  font-size: 12px;
}

.form_sent_icon {
  width: 150px;
  height: 150px;
}

@media screen and (min-width: 1024px) {
  .contact_sect_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto 0 auto;
    max-width: 1440px;
  }

  #message {
    height: 200px;
  }

  .contact_form_container a {
  font-size: 16px;
}
}

@media screen and (min-width: 2000px) {
  .contact_sect_container {
    max-width: 1920px;
  }
}
