.bodySignup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signUpTop {
  height: 49px;
  padding-top: 67px;
  padding-right: 8%;
  gap: 35px;
}

.signUpCheckBox {
  color: #a8a8a8;
}

.signUpCheckBox a {
  color: var(--primary-color);
}

.goBackButton {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 32px;
  left: -51px;
  top: 88px;
}

.goBackButton img:hover {
  background-color: var(--dark-gray);
  border-radius: 50%;
}

.signUpHeader {
  width: 100%;
}

.signUpButton {
  gap: 10px;
  border-radius: 8px;
  background-color: #2a3647;
  color: white;
  height: 49px;
  width: 91px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

.HeadlinerLogin {
  width: 100%;
  height: 89px;
  gap: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 61px;
  line-height: 73.2px;
  font-weight: 700;
  border: unset;
}

.HeadlinerLine {
  width: 150px;
  height: 3px;
  background-color: #29abe2;
  border-radius: 12px;
  border: none;
}

.loginInputFields {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 7px;
  flex-direction: column;
}

.loginInputFields div {
  color: red;
  text-align: left;
}

.emailClass {
  width: 422px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 21px 12px 21px;
  gap: 10px;
  font-size: 24px;
}

.passwordClass {
  width: 422px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 21px 12px 21px;
  gap: 10px;
  font-size: 24px;
}

.emailClass::placeholder,
.passwordClass::placeholder {
  font-size: 24px;
  padding-left: 22px;
  align-items: baseline;
}

.checkboxContainer {
  width: 652px;
  padding-left: 300px;
}

.loginButton {
  width: 126px;
  height: 55px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 25.2px;
  size: 21px;
  background-color: #2a3647;
  color: white;
  border: unset;
  padding: 15px 24px 15px 24px;
  gap: 10px;
  margin-right: 32px;
  font-size: 21px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.loginButton:hover {
  background-color: #29abe2;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.logoSignup {
  position: absolute;
  width: 100px;
  height: 122px;
  top: 70px;
  left: 77px;
}

.footerIndex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  gap: 35px;
  height: 35px;
}

.error-sign-up {
	color: var(--danger-color);
	text-align: left;
	font-size: 12px;
	margin: 4px;
}

.smallLinks:hover {
  color: #29abe2;
}

@media only screen and (max-width: 950px) {

  .logoSignup {
    position: absolute;
    width: 64px;
    height: 78px;
    top: 37px;
    left: 38px;
  }

  .goBackButton {
    left: 0px;
    top: 81px;
    max-width: 320px;
  }

  div.signUpHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  form.loginBox {
    width: 396px;
    padding: 32px 0px 32px 0px;
    gap: 32px;
  }

  div.HeadlinerLogin {
    width: 139px;
    height: 72px;
    gap: 16px;
    font-size: 47px;
    font-weight: 700;
    line-height: 56.4px;
  }

  input.passwordClass {
    width: 80%;
    gap: 8px;
    margin-left: 20px;
  }

  .loginInputFields input::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    width: 322px;
    height: 24px;
  }

  div.enterButtons {
    display: flex;
    flex-direction: column;
    gap: 21px;
  }

  button.loginButton {
    width: 180px;
    height: 51px;
    border-radius: 8px;
    padding: 4px 0px 4px 0px;
    gap: 10px;
  }

  button.guestLogin {
    width: 180px;
    height: 51px;
    border-radius: 8px;
    padding: 4px 0px 4px 0px;
    gap: 10px;
  }

  div.signUpTop {
    display: none;
  }

  div.footerIndex {
    width: auto;
  }

  div.checkboxContainer {
    width: 100px;
    padding-left: 0;
    padding-right: 200px;
  }

  div.signUpBottom {
    display: inline;
    height: 49px;
    padding-top: 67px;
    padding-right: 8%;
    gap: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logoIndex img {
    width: 64px;
    height: 78px;
    padding-left: 38px;
    padding-top: 37px;
  }
}