@import "../global_styles.css";

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

a,
a:visited {
  color: var(--color-primary);
}

.getstarted-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 53px;
  width: 100%;
  background: url("../../images/getstarted/background.png") #134d53;
  background-size: cover;
  padding-top: 144px;
  overflow: auto;
}

.getstarted-body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 97px;
  width: 100%;
}

.getstarted-forms-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 54px 48px 49px;
  width: 390px;
}

.getstarted-form-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.getstarted-form-input {
  width: 100%;
  height: 40px;
  background-color: #e6f4ef;
  border-radius: 8px;
  border: unset;
  padding: 0 8px;
  box-sizing: border-box;
}

.getstarted-form-button {
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color-primary);
  border: unset;
  border-radius: 25px;
  padding: 11px 31px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
}

.toggle-password-visibility-button {
  top: 28px;
  right: 14px;
}

.getstarted-requirements-container {
  width: 100%;
  max-width: 920px;
}

.getstarted-requirements-text {
  max-width: 390px;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
  margin: unset;
}

.getstarted-right-section {
  width: 100%;
  max-width: 434px;
  color: #ffffff;
}

.getstarted-right-section-title {
  line-height: 46px;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 15px;
}

.getstarted-right-section-description {
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 44px;
}

.getstarted-form-description {
  line-height: 19px;
  font-size: 16px;
  color: var(--color-primary);
}

#freeTermsCheckbox {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  margin: 0;
  border: unset;
  box-shadow: 0 1px 0 #354a5f80;
  cursor: pointer;
}

.checkbox-container {
  padding-left: 42px;
}

@media screen and (max-width: 992px) {
  .getstarted-container {
    gap: 74px;
    padding: 39px 24px;
  }

  .getstarted-body {
    gap: 28px;
  }

  .getstarted-forms-container {
    padding: 56px 26px 31px;
  }

  .getstarted-right-section-title {
    line-height: 32px;
    font-size: 32px;
  }

  .getstarted-right-section-description {
    margin-bottom: 29px;
  }
}
