.site-register {
  width: 100%;
  background: linear-gradient(
    180deg,
    var(--foundation-primary-blue) 30.29%,
    #1aabff 100%
  );
}

.site-register + .site-footer {
  display: none;
}

.register-banner {
  background-color: var(--foundation-primary-blue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding: 36px;
  height: 100%;
  width: 100%;
  text-align: center;
}

.register-banner .title-page {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.08px;
}

.register-banner .register-tagline {
  max-width: 292px;
}

.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px;
  color: var(--foundation-white);
}

.register-form .input {
  font-size: 14px;
  width: 100%;
  display: flex;
  min-height: 36px;
  padding: 4px 12px;
  margin: 8px 0;
  align-items: center;
  border: none;
  border-radius: 6px;
  background: var(--foundation-white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.register-form .form-heading {
  font-family: Inter;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foundation-white);
}

.register-form .input-form {
  display: grid;
  gap: 8px;
}

.register-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0;
}

.register-form .checkbok-form .wpcf7-radio input[type="radio"] {
  position: relative;
  top: -2px;
}

.register-form .checkbok-form,
.wpcf7-form-control {
  display: grid;
  gap: 16px;
  cursor: pointer;
}

.register-form .checkbok-form label {
  display: flex;
  gap: 8px;
}

.register-form .checkbok-form .wpcf7-checkbox input[type="checkbox"] {
  position: relative;
  top: 2px;
}

.register-form .checkbok-form a {
  color: var(--foundation-blue);
}

.register-form .wpcf7-list-item {
  margin: 0;
}

.register-form .wpcf7-list-item input {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 2px solid var(--foundation-white);
  border-radius: 5px;
}

.register-form .wpcf7-list-item input:checked {
  background-color: var(--foundation-blue);
}

.register-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.register-form .hide-value .wpcf7-list-item-label {
  display: none;
}

.register-form .show-label .wpcf7-list-item-label {
  display: block;
  position: relative;
  top: 3px;
}

.register-form .dropdown {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.register-form .other-input {
  display: none;
}

.register-form .wpcf7-spinner {
  display: none;
}

.fix-height {
  height: 100vh;
}

.disable-message,
.remark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
}

.disable-message {
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .register-banner .title-page {
    font-size: 36px;
  }

  .register-form {
    padding: 0 60px;
  }

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

  .disable-message {
    height: 70%;
  }
}

@media screen and (min-width: 992px) {
  .register-banner {
    position: fixed;
    width: 300px;
    text-align: left;
    align-items: flex-start;
  }

  .register-form .form-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .register-form {
    padding: 96px 56px 96px 356px;
    gap: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .register-banner {
    width: 440px;
  }

  .register-form {
    padding: 96px 56px 96px 496px;
  }
}

@media screen and (min-width: 1440px) {
  .register-form {
    padding: 96px 132px 96px 572px;
  }
}
