.ta-main {
  padding: 24px 32px;
}

.ta-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--light-00);
  border: 1px solid var(--light-20);
  border-radius: 8px;
}

.ta-card-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ta-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ta-form-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ta-form-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ta-form button {
  align-self: flex-start;
}

@media screen and (max-width: 964px) {
  .ta-card {
    flex-direction: column-reverse;
  }

  .ta-card img {
    width: 100%;
    object-fit: contain;
  }

  .ta-form-container {
    flex-direction: column;
  }

  .ta-form-section {
    width: 100%;
  }
}

@media screen and (max-width: 365px) {
  .ta-card-buttons {
    flex-direction: column-reverse;
    width: 100%;
  }

  .ta-form button {
    align-self: stretch;
  }
}

.ta-iframe {
    min-height: 1450px;
}

@media screen and (max-width: 786px) {
    .ta-iframe {
        height: 1850px;
    }
}

@media screen and (max-width: 440px) {
    .ta-iframe {
        height: 1600px;
    }
}