@font-face {
  font-family: fontTitle;
  src: url("./assets/font/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: fontTitle2;
  src: url("./assets/font/Poppins-Regular.ttf");
}
@font-face {
  font-family: fontText;
  src: url("./assets/font/Poppins-Light.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@keyframes arrowScroll {
  0% {
    bottom: -5px;
  }
  100% {
    bottom: 5px;
  }
}
html {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.profile,
.login {
  width: 100vw;
  max-width: 500px;
  height: 100svh;
  margin-top: 0px;
  background: url("./assets/img/bg_totalfitness.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile .swiper-wrapper,
.login .swiper-wrapper {
  scroll-behavior: smooth;
}
.profile .profile-home,
.profile .login-screen,
.login .profile-home,
.login .login-screen {
  width: 100vw;
  max-width: 400px;
  height: 85vh;
  height: 100svh;
}
.profile .button-next,
.login .button-next {
  width: 300px;
  height: 45px;
  padding: 0;
  cursor: pointer;
  font-family: fontTitle2;
  font-size: 1.5rem;
  font-weight: 200;
  text-align: center;
  text-shadow: 1px 1px 1px #2a6691;
  color: #f2f2f2;
  background: linear-gradient(0deg, #2a6691 0%, #3c92d0 49%);
  border: none;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.profile .button-next:hover,
.login .button-next:hover {
  background: #2a6691;
}
.profile .button-next:active,
.login .button-next:active {
  scale: 0.92;
}
.profile .button-next:disabled,
.login .button-next:disabled {
  background: #bbbbbb;
  text-shadow: none;
  scale: 0.92;
}
.profile .hide,
.login .hide {
  display: none;
}
.profile h5,
.login h5 {
  font-family: fontText;
  font-size: 1.3rem;
  font-weight: 100;
  color: #ffffff;
  cursor: default;
}
.profile h6,
.login h6 {
  font-family: fontText;
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
  color: #ffffff;
  cursor: default;
}

.profile .profile-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
}
.profile .profile-home .title-profile {
  margin-top: 5%;
  margin-bottom: 2%;
  font-family: fontTitle;
  font-size: 2.4rem;
  font-size: clamp(1.5rem, 10vw, 2.4rem);
  color: #ffffff;
}
.profile .profile-home .welcome-text {
  width: 90%;
  max-width: 360px;
  margin: 0;
  margin-bottom: 5px;
  font-family: fontText;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
}
.profile .profile-home .swiper {
  width: 100%;
  height: 100%;
}
.profile .profile-home .login-form {
  width: 90%;
  min-width: 260px;
  max-width: 360px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile .profile-home .login-form input {
  width: 100%;
  height: 35px;
  padding-left: 35px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: text;
  font-family: fontText;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #fafafa;
  color: #050505;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.profile .profile-home .login-form input::-moz-placeholder {
  color: #858585;
  font-size: 1rem;
  font-weight: 200;
}
.profile .profile-home .login-form input::placeholder {
  color: #858585;
  font-size: 1rem;
  font-weight: 200;
}
.profile .profile-home .login-form input:focus-visible {
  border: none;
  outline: 3px solid #3c92d0;
}
.profile .profile-home .login-form .invalid {
  margin-top: 2px;
  margin-left: 10px;
  font-family: fontText;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: left;
  color: #3c92d0;
}
.profile .profile-home .login-form .error {
  border: 3px solid #3c92d0;
}
.profile .profile-home .gender-section {
  width: 100%;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile .profile-home .gender-section .title-gender {
  font-family: fontTitle2;
  font-size: clamp(1.2rem, 6vw, 1.4rem);
  text-align: center;
}
.profile .profile-home .gender-section .gender-selection {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15%;
}
.profile .profile-home .gender-section .gender-selection .male,
.profile .profile-home .gender-section .gender-selection .female {
  position: relative;
  width: 30vw;
  min-width: 80px;
  max-width: 100px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
.profile .profile-home .gender-section .gender-selection .male .checkbox,
.profile .profile-home .gender-section .gender-selection .female .checkbox {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
}
.profile .profile-home .gender-section .gender-selection .male img,
.profile .profile-home .gender-section .gender-selection .female img {
  width: 25vw;
  min-width: 80px;
  max-width: 100px;
  height: auto;
}
.profile .profile-home .gender-section .gender-selection .male img:hover,
.profile .profile-home .gender-section .gender-selection .female img:hover {
  cursor: pointer;
}
.profile .profile-home .gender-section .gender-selection .male h6,
.profile .profile-home .gender-section .gender-selection .female h6 {
  font-family: fontTitle2;
  font-size: 1rem;
  font-size: clamp(0.8rem, 4vw, 1rem);
  text-transform: uppercase;
}
.profile .profile-home .training-goals {
  width: 100%;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile .profile-home .training-goals h5 {
  width: 95%;
  margin-bottom: 0px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}
.profile .profile-home .training-goals .goals {
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15%;
  overflow: hidden;
}
.profile .profile-home .training-goals .goals .goal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30vw;
  min-width: 80px;
  max-width: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
.profile .profile-home .training-goals .goals .goal label {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile .profile-home .training-goals .goals .goal .checkbox {
  top: 30px;
  left: 60px;
  z-index: 1;
  opacity: 0;
}
.profile .profile-home .training-goals .goals .goal img {
  width: 25vw;
  min-width: 80px;
  max-width: 100px;
  height: auto;
}
.profile .profile-home .training-goals .goals .goal img:hover {
  cursor: pointer;
}
.profile .profile-home .training-goals .goals .goal h6 {
  width: 50vw;
  max-width: 220px;
  height: 30px;
  margin-top: 5px;
  font-family: fontTitle2;
  font-size: clamp(0.8rem, 4vw, 1rem);
  text-transform: uppercase;
  text-align: center;
}
.profile .profile-home .training-goals .arrow-scroll {
  margin-top: -10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: 0.7s arrowScroll infinite alternate;
  -webkit-animation: 0.7s arrowScroll infinite alternate;
}
.profile .profile-home .training-goals .arrow-scroll h5 {
  font-family: fontText;
  font-size: 1rem;
  color: #3c92d0;
}
.profile .profile-home .training-goals .arrow-scroll img {
  width: 20px;
}
.profile .profile-home .button-next {
  width: 80vw;
  min-width: 250px;
  max-width: 300px;
  height: 7vh;
  min-height: 40px;
  max-height: 60px;
  margin-top: 2%;
  margin-bottom: 10%;
}

.login .login-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.login .login-screen .strength {
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.login .login-screen .strength h5 {
  font-family: fontTitle2;
  font-size: 1.2rem;
  font-size: clamp(1rem, 5vw, 1.5rem);
  text-align: center;
}
.login .login-screen .strength .buttons-level {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.login .login-screen .strength .buttons-level .level {
  width: 85vw;
  min-width: 260px;
  max-width: 320px;
  height: 6vh;
  min-height: 28px;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: #ffffff;
  background-color: #bbbbbb;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.login .login-screen .strength .buttons-level .level h6 {
  font-family: fontTitle;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 1px;
}
.login .login-screen .strength .buttons-level .level h6:hover {
  cursor: pointer;
}
.login .login-screen .strength .buttons-level .level h6 strong {
  font-family: fontTitle;
  font-weight: 200;
}
.login .login-screen .strength .buttons-level .level h6 span {
  font-family: fontTitle;
  text-transform: uppercase;
}
.login .login-screen .strength .buttons-level .level input[type=checkbox] {
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
}
.login .login-screen .strength .buttons-level .level:hover {
  cursor: pointer;
}
.login .login-screen .strength .buttons-level .active {
  background: linear-gradient(90deg, #2a6691 0%, #3c92d0 69%);
}
.login .login-screen .weekly-goal {
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login .login-screen .weekly-goal h5 {
  font-family: fontTitle2;
  font-size: 1.1rem;
  font-size: clamp(1rem, 6vw, 1.5rem);
  text-align: center;
}
.login .login-screen .weekly-goal h6 {
  font-size: 0.8rem;
  font-size: clamp(0.75rem, 4vw, 1.1rem);
  line-height: 1;
}
.login .login-screen .weekly-goal .days {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0 5px;
}
.login .login-screen .weekly-goal .days .day {
  width: 12vw;
  min-width: 35px;
  max-width: 55px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: fontTitle;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #bbbbbb;
}
.login .login-screen .weekly-goal .days .day input[type=checkbox] {
  position: relative;
  top: 0px;
  right: 0px;
  margin-left: -10px;
  z-index: 1;
  opacity: 0;
}
.login .login-screen .weekly-goal .days .day:hover {
  cursor: pointer;
}
.login .login-screen .weekly-goal .days .day-active {
  background-color: #3c92d0;
}
.login .login-screen .measures {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login .login-screen .measures h6 {
  width: 92%;
  font-size: 0.85rem;
  font-size: clamp(0.75rem, 3.5vw, 1rem);
  line-height: 1;
  margin-bottom: 10px;
}
.login .login-screen .measures .height,
.login .login-screen .measures .weight {
  width: 260px;
  height: 36px;
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login .login-screen .measures .height label,
.login .login-screen .measures .weight label {
  width: 20px;
  font-family: fontText;
  font-size: 1rem;
  font-weight: 200;
  text-align: end;
  position: relative;
  right: 10px;
  color: #ffffff;
}
.login .login-screen .measures .height .data-entry,
.login .login-screen .measures .weight .data-entry {
  width: 210px;
  height: 34px;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.login .login-screen .measures .height .data-entry input[type=number],
.login .login-screen .measures .weight .data-entry input[type=number] {
  width: 140px;
  height: 30px;
  font-family: fontTitle;
  font-size: 1.1rem;
  font-size: clamp(1rem, 5vw, 1.3rem);
  background-color: transparent;
  color: #383838;
  padding-left: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
.login .login-screen .measures .height .data-entry input[type=number]:focus,
.login .login-screen .measures .weight .data-entry input[type=number]:focus {
  outline: 3px solid #3c92d0;
  background-color: rgba(0, 0, 0, 0);
  width: 160px;
  height: 30px;
  z-index: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.login .login-screen .measures .height .data-entry input[type=number]::-moz-placeholder, .login .login-screen .measures .weight .data-entry input[type=number]::-moz-placeholder {
  color: #858585;
  font-weight: 100;
  font-size: 1rem;
  font-size: clamp(1rem, 5vw, 1.3rem);
  padding-left: 0px;
}
.login .login-screen .measures .height .data-entry input[type=number]::placeholder,
.login .login-screen .measures .weight .data-entry input[type=number]::placeholder {
  color: #858585;
  font-weight: 100;
  font-size: 1rem;
  font-size: clamp(1rem, 5vw, 1.3rem);
  padding-left: 0px;
}
.login .login-screen .measures .height .data-entry span,
.login .login-screen .measures .weight .data-entry span {
  width: 1px;
  height: 20px;
  background-color: #bbbbbb;
  z-index: 20;
}
.login .login-screen .measures .height .data-entry .unit,
.login .login-screen .measures .weight .data-entry .unit {
  width: 20px;
  margin-right: 10px;
  text-align: start;
  font-family: fontTitle2;
  color: #6b6b6b;
  z-index: 20;
}
.login .login-screen .button-next {
  width: 80vw;
  min-width: 250px;
  max-width: 300px;
  height: 7vh;
  min-height: 40px;
  max-height: 60px;
  margin-top: 2%;
  margin-bottom: 5%;
}

div {
  width: 100vw;
  max-width: 400px;
  height: 80vh;
  max-height: 800px;
}

@media (max-height: 590px) {
  .profile .profile-home .title-profile {
    margin-top: 2%;
    margin-bottom: -10px;
    font-size: 2rem;
    font-size: clamp(1.5rem, 8vh, 2rem);
  }
  .profile .profile-home .login-form input {
    height: 30px;
    font-size: 1rem;
  }
  .profile .profile-home .gender-section .title-gender {
    font-size: 1.1rem;
    font-size: clamp(1rem, 4vh, 1.2rem);
  }
  .profile .profile-home .gender-section .gender-selection .male img,
  .profile .profile-home .gender-section .gender-selection .female img {
    width: 14vh;
    min-width: 50px;
    height: auto;
  }
  .profile .profile-home .gender-section .gender-selection .male h6,
  .profile .profile-home .gender-section .gender-selection .female h6 {
    font-size: 0.8rem;
    font-size: clamp(0.7rem, 2.5vh, 1rem);
  }
  .profile .profile-home .training-goals h5 {
    font-size: 1.1rem;
    font-size: clamp(1rem, 4vh, 1.2rem);
  }
  .profile .profile-home .training-goals .goals .goal {
    height: 100%;
  }
  .profile .profile-home .training-goals .goals .goal img {
    width: 14vh;
    min-width: 50px;
    height: auto;
  }
  .profile .profile-home .training-goals .goals .goal h6 {
    font-size: 0.8rem;
    font-size: clamp(0.7rem, 2.5vh, 1rem);
  }
  .profile .profile-home .button-next {
    height: 5vh;
    min-height: 30px;
    max-height: 50px;
    margin-bottom: 5%;
    font-size: 1.3rem;
  }
  .login .login-screen .strength h5 {
    font-size: 1rem;
    font-size: clamp(1rem, 3vh, 1.1rem);
  }
  .login .login-screen .strength .buttons-level .level h6 {
    font-size: 0.8rem;
  }
  .login .login-screen .weekly-goal h5 {
    font-size: 1rem;
    font-size: clamp(1rem, 3.5vh, 1.2rem);
  }
  .login .login-screen .weekly-goal h6 {
    font-size: 0.9rem;
    font-size: clamp(0.8rem, 3vh, 1.1rem);
  }
  .login .login-screen .weekly-goal .days .day {
    width: 9vh;
  }
  .login .login-screen .measures .height label,
  .login .login-screen .measures .weight label {
    font-size: 0.8rem;
    font-size: clamp(0.8rem, 3vh, 1rem);
  }
  .login .login-screen .measures .height .data-entry,
  .login .login-screen .measures .weight .data-entry {
    height: 6vh;
    min-height: 28px;
  }
  .login .login-screen .measures .height .data-entry input[type=number],
  .login .login-screen .measures .weight .data-entry input[type=number] {
    font-size: 1rem;
    font-size: clamp(0.9rem, 3.5vh, 1.1rem);
  }
  .login .login-screen .measures .height .data-entry input[type=number]::-moz-placeholder, .login .login-screen .measures .weight .data-entry input[type=number]::-moz-placeholder {
    font-size: 1rem;
    font-size: clamp(0.9rem, 3.5vh, 1.1rem);
  }
  .login .login-screen .measures .height .data-entry input[type=number]::placeholder,
  .login .login-screen .measures .weight .data-entry input[type=number]::placeholder {
    font-size: 1rem;
    font-size: clamp(0.9rem, 3.5vh, 1.1rem);
  }
  .login .login-screen .button-next {
    height: 5vh;
    min-height: 30px;
    max-height: 50px;
    margin-bottom: 5%;
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=styles.css.map */