#bodyLogin,
#bodySignUp {
  overflow: auto;
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
}

.headerIndex {
  display: flex;
  justify-content: flex-end;
  padding-top: 70px;
  padding-right: 40px;
}

.sectionPageOneLogInSignUp {
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1PageOneLogInSignUp {
  text-align: center !important;
  margin-top: 48px;
  margin-bottom: 8px;
}

.h1PageOneLogInSignUp::after {
  content: "";
  background-color: #29abe2;
  width: 150px;
  height: 0.2rem;
  display: block;
  margin: 0.75rem auto;
  border-radius: 1.5px;
}

.inputPageOneLogInSignUp:focus ~ label,
.inputPageOneLogInSignUp:valid ~ label {
  top: -5px;
}

.aPageOneLogInSignUp {
  color: #a8a8a8;
  white-space: nowrap;
}

.aPageOneLogInSignUp:hover {
  color: #29abe2;
  font-weight: bold;
}

.notAUser {
  font-size: 20px;
  text-align: center;
}

.paPageOneLogInSignUp {
  margin-inline: 10px;
  margin-top: 2px;
}

.logo {
  position: absolute;
  height: 150px;
  left: 70px;
  top: 70px;
}

.form-box {
  position: relative;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.formBoxLogIn {
  height: 493px;
  width: 652px;
  opacity: 0;
  animation: startDelay 1.25s ease-in-out forwards;
  animation-delay: 0.7s;
}

@keyframes startDelay {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.formBoxSignUp {
  height: 630px;
  width: 600px;
  max-width: 90vw;
  margin-inline: 16px;
}

.back-arrow {
  margin-right: -20px;
  position: relative;
  top: -36%;
  height: 34px;
  width: 32px;
  background-position: center;
  background-image: url(../assets/img/arrow-left-line.svg);
  background-repeat: no-repeat;
}

.back-arrow:hover {
  background-image: url(../assets/img/arrowLeftLineHover.svg);
}

.inputbox {
  width: 430px;
  height: 48px;
  border: 2px solid #80808040;
  border-radius: 10px;
  font-size: 15px;
  color: #80808040;
  display: flex;
}

.inputbox label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1em;
  pointer-events: none;
  transition: 0.5s;
}

input:focus ~ label,
input:valid ~ label {
  top: -5px;
}

.input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: 95%;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-right: -20px;
}

.person {
  background-image: url(../assets/img/person.svg);
}

.mail {
  background-image: url(../assets/img/mail.svg);
}

.lock {
  background-image: url(../assets/img/lock.svg);
}

.phone {
  background-image: url(../assets/img/phone.svg);
}

.lock:active,
.lock:focus {
  background-image: url(../assets/img/visibilityoff.svg);
}

.visbility {
  background-image: url(../assets/img/visibility.svg);
}

.visibility-icon img {
  position: relative;
  top: 15px;
  right: 22px;
  opacity: 0;
  cursor: pointer;
}

.input::placeholder {
  color: #d1d1d1;
  background-size: contain;
  font-size: 20px;
}

.alert {
  position: relative;
  bottom: 21px;
  color: #fe818f;
  font-size: xx-small;
  margin-bottom: -24px;
}

.al {
  left: -127px;
}

/* checkbox + text*/

.checkboxText {
  display: flex;
  font-size: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.checkboxTextSignUp {
  margin-top: 14px;
}

.checkboxTextLogIn {
  margin-top: 20px;
}

.button:disabled {
  cursor: not-allowed;
  background-color: gray;
}

.button:disabled::after {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.signUp {
  transition: right 0.75s ease, top 0.75s ease, font-size 0.75s ease;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: 36px;
}

@media (max-width: 460px) {
  .signUp {
    top: 88px;
  }
  .notAUser {
    font-size: 16px;
  }
}

.slideInBG {
  display: none;
  position: fixed;
  top: 0;
  height: 100dvh;
  width: 100vw;
  background-color: #80808045;
}
.slideIn {
  animation: slideIn 0.75s ease-in-out forwards;
  background-color: #2a3647;
  border-radius: 20px;
  position: absolute;
  padding: 30px;
  color: #cdcdcd;
}

@keyframes slideIn {
  0% {
    top: 100dvh;
    left: 42vw;
  }

  100% {
    top: 36dvh;
    left: 42vw;
  }
}

footer {
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-bottom: 40px;
}

.underline {
  margin: 0;
  font-size: unset;
}

.underline:hover {
  text-decoration: underline;
  font-weight: 100;
}

.signupMaskBG {
  position: fixed;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.signupMask {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  z-index: 1000;
  width: 400px;
  padding: 24px;
  line-height: 1.5715;
}

.formSignUp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.formLogIn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkboxTextSpan {
  margin-top: 1px;
  margin-left: 8px;
}

.aPrivacyPolicy {
  color: #29abe2;
}

.position {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 48px;
}

.positionSignIn {
  align-items: center;
}

#submitButton {
  width: 126px;
  height: 55px;
}

.buttonSignIn {
  border-radius: 8px;
}

.buttonsLogIn {
  gap: 35px;
  display: flex;
  justify-content: center;
}

.buttonsLogIn button {
  font-weight: 700;
  font-size: 21px;
  border-radius: 8px;
  height: 48px;
  cursor: pointer;
}

.buttonLogIn {
  width: max-content;
}

.buttonGuestLogIn {
  width: 177px;
  font-weight: 700;
  font-size: 21px;
  border-radius: 8px;
  height: 48px;
  text-align: center;
  padding: 12px;
}

.buttonGuestLogIn:hover {
  cursor: pointer;
}

.buttonOnIndexToSignUp {
  border-radius: 8px;
  height: 49px;
  width: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
