button {
  border: unset;
}

.whiteButton {
  background-color: white;
  color: var(--mainDarkColor);
  border: 1px solid var(--mainDarkColor);
}

.whiteButton:hover {
  border: 1px solid var(--customBlue);
  color: var(--customBlue);
}

input:focus {
  outline: none;
  border: var(--customBlue);
}

.loginOuterContainer {
  align-items: center;
  justify-content: space-evenly;
  /* gap: 4rem; */
}

.welcomeBackground {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  animation: blend-out 1s ease-out;
  opacity: 0;
}

.loginScreenLogo {
  position: absolute;
  height: 10%;
  min-height: 64px;
  z-index: 50;
  top: 5vh;
  left: 5vw;
  animation: move-scale 0.6s;
}

.loginOuterContainer button {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 21px;
  font-weight: bold;
}

.loginOuterContainer button:first-child:hover {
  background-color: rgb(41, 171, 226);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.loginOuterContainer button:last-child:hover {
  color: rgb(41, 171, 226);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}



.signUpContainer {
  position: absolute;
  top: 2rem;
  gap: 2rem;
  justify-content: flex-end;
  padding-right: 4rem;
}

.inputFields {
  background-color: white;
  width: 95%;
  max-width: 652px;
  height: 493px;
  padding: 2rem 5rem;
  border-radius: 30px;
  margin-top: 120px;
  margin-bottom: 32px;
  gap: 1rem;
  align-items: center;
  box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
}

.inputFields h2 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 0;
  margin-block-start: 0;
  margin-top: 15px;
}

.inputFields > div {
  position: relative;
  display: flex;
  align-items: center;
}

.inputFields .separator {
  border-top: 3px solid var(--customBlue);
  width: 160px;
  margin-bottom: 1rem;
}

.inputFields input {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 12px 21px;
  min-height: 2rem;
  font-size: 1rem;
  width: 100%;
  color: black;
}

.inputFields input::placeholder {
  color: #d1d1d1;
}

.inputFields img {
  width: 24px;
  height: 24px;
}

.vis-offIcon{
  cursor: pointer;
}

.vis-onIcon{
  cursor: pointer;
}

.inputIcon {
  position: absolute;
  right: 1rem;
}

.inputPassword {
  margin-top: 14px;
  margin-bottom: 30px;
}

.rememberContainer {
  padding-left: 60px;
  gap: 0.5rem;
  cursor: pointer;
}

.loginButtonContainer {
  margin-top: 1rem;
  gap: 2rem;
}

.loginLegalContainer {
  margin-top: 3rem;
  margin-bottom: 2rem;
  gap: 2rem;
  color: #a8a8a8;
}

.loginLegalContainer button:first-child:hover {
  color: #29abe2;
  cursor: pointer;
}
 

@keyframes move-scale {
  0% {
    scale: 2.7;
    top: 45%;
    left: 45%;
  }

  25% {
    scale: 2.7;
    top: 45%;
    left: 45%;
  }
}

@keyframes blend-in {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
}

@keyframes blend-out {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.signUp {
  height: 640px;
  width: 598px;
  border-radius: 30px;
  background-color: white;
  padding: 48px 88px 48px 88px;
  gap: 32px;
  box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
  align-items: center;
  z-index: 100;
}

.signUp h2 {
  font-size: 61px;
  font-weight: 700;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-top: -75px;
}

.signUpInputs {
  position: relative;
  width: 422px;
  height: 286px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.signUpInputElement {
  position: relative;
  display: flex;
  align-items: center;
  width: 422px;
}

.signUp input {
  height: 48px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d1d1;
  padding: 12px 21px 12px 21px;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

.signUp input::placeholder {
  color: #d1d1d1;
}

.signUp .separator {
  border-top: 3px solid var(--customBlue);
  width: 160px;
  margin-bottom: 0;
  margin-top: -20px;
}

.singUpButtonContainer button {
  height: 55px;
  width: 126px;
  padding: 15px 24px 15px 24px;
  gap: 10px;
  color: white !important;
  font-size: 20px;
  cursor: pointer;
}

.singUpButtonContainer button:enabled:hover {
  background-color: #29abe2 !important;
  cursor: pointer;
  color: white !important;
}

.signUpPrivacyPolicy {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.signUpPrivacyPolicy img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  cursor: pointer;
}

.signUpPrivacyPolicy span {
  color: #a8a8a8;
  gap: 10px;
}
.signUpPrivacyPolicy span:last-child {
  color: #29abe2;
  margin-left: 4px;
  cursor: pointer;
}

.signUpPrivacyPolicy span:last-child:hover {
  text-decoration: underline;
  font-weight: 500;
}

.loginLegalContainer a:hover {
  cursor: pointer;
}

.loginLegalContainer a:first-child:hover {
  color: #29abe2;
  font-weight: 700;
}

.loginLegalContainer a:last-child:hover {
  color: #29abe2;
  font-weight: 700;
}

.backgroundPopup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.successfullSignedUp {
  position: fixed;
  left: 50%;
  bottom: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 74px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0px 25px 0px 25px;
  background-color: #2a3647;
  color: white;
  transform: translate(-50%);
  transition: all 0.125s ease;
}

.successfullSignedUp.show {
  bottom: 50%;
}

.successfullSignedUp.hide {
  bottom: -100%;
}

.signUpIcon {
  position: absolute;
  right: 8px;
}

.errorMessage {
  top: 3.1rem;
  z-index: 10;
}

.arrowLeft {
  width: 100%;
  position: relative;
  left: -40px;
}

.arrowLeft img:hover {
  width: 32px;
  height: 32px;
  background-color: #e4e0e0;
  border-radius: 50%;
  scale: 1.1;
}

.signUpContainerResponsive {
  display: none;
}

.topSignUpButton:hover {
  background-color: #29abe2;
  color: white !important;
}

@media (max-width: 630px) {
  .loginScreenLogo {
    width: 64px;
  }

  .signUp {
    max-width: 95%;
  }

  .singUpButtonContainer button {
    width: 180px;
    height: 51px;
  }

  .signUpInputElement {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .loginScreenLogo {
    width: 64px;
  }

  .inputFields {
    width: 95%;
  }

  .signUpInputs {
    max-width: 85vw;
  }
}

@media (max-width: 535px) {
  .signUp h2 {
    font-size: 47px;
  }

  .signUp .separator {
    width: 95px;
  }

  .signUpPrivacyPolicy {
    margin-top: 50px;
  }

  .loginButtonContainer button {
    font-size: 16px;
  }
}

@media (max-width: 490px) {
  /* body {
    background-color: #2a3647 !important;
  } */

  .welcomeBackground {
    background-color: var(--mainDarkColor);
  }

  .loginScreenLogo {
    top: 3vh;
    left: 7vw;
  }

  .inputFields {
    height: 515px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .inputFields h2 {
    margin-top: 0px;
    font-size: 47px;
  }

  .inputFields .separator {
    width: 95px;
  }

  .inputFields input {
    width: 100%;
  }

  .loginButtonContainer {
    height: 123px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .loginOuterContainer {
    background-color: #f6f7f8;
  }

  .loginOuterContainer button {
    width: 180px;
    height: 51px;
  }

  .signUpContainer {
    display: none;
  }

  .signUpContainerResponsive {
    display: inline;
    width: 100%;
    height: 49px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .signUpContainerResponsive span {
    margin-top: -15px;
  }

  .signUpContainerResponsive button {
    width: 104px;
    height: 49px;
    border-radius: 8px;
    padding: 15px 16px 15px 16px;
    font-size: 14px;
  }

  .signUpContainerResponsive button:hover {
    color: white !important;
  }

  .signUpContainerResponsive button .rememberContainer {
    padding-left: 10px;
  }

  .hide-mobile {
    display: none;
  }
}

@media (min-width: 490px) {
  .show-mobile {
    display: none;
  }
}

@media (max-width: 400px) {
  .arrowLeft {
    left: -60px;
  }

  .signUp h2 {
    font-size: 36px;
  }
}

@media (max-width: 335px) {
  .signUp h2 {
    font-size: 32px;
  }
}

.signUpContainer,
.inputFields,
.loginLegalContainer,
.signUpContainerResponsive {
  animation: blend-in 1s;
}
