.login1 {
  margin: 0;
  position: relative;
  font-size: 32px;
  font-weight: 600;
  font-family: var(--font-poppins);
  color: var(--color-white);
  text-align: left;
  display: inline-block;
  min-width: 45px;
}
.login,
.login-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.signup,
.signup-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.login {
  border-bottom: 1px solid var(--color-white);
  padding: 5px 10px 3px;
}
.login-wrapper {
  padding: 0 75px;
}

.signup-wrapper {
  padding: 0 55px;
}

.username {
  position: relative;
  font-size: var(--font-size-base);
  font-family: var(--font-poppins);
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  min-width: 70px;
}
.empty-form {
  border: 0;
  outline: 0;
  background-color: transparent;
  align-self: stretch;
  height: 30px;
  position: relative;
  border-bottom: 1px solid var(--color-white);
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 114px;
}
.input-fields {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.password {
  position: relative;
  font-size: var(--font-size-base);
  font-family: var(--font-poppins);
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  min-width: 66px;
}
.input-fields-child {
  border: 0;
  outline: 0;
  background-color: transparent;
  align-self: stretch;
  height: 30px;
  position: relative;
  border-bottom: 1px solid var(--color-white);
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 114px;
}
.credentials,
.input-fields1 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.credentials {
  gap: 10px;
}
.login2 {
  text-decoration: none;
  position: relative;
  font-size: var(--font-size-base);
  font-family: var(--font-poppins);
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  min-width: 47px;
}
.login-button {
  cursor: pointer;
  border: 0;
  padding: 7px var(--padding-xl);
  background-color: var(--color-springgreen);
  align-self: stretch;
  height: 35px;
  border-radius: var(--br-8xs);
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.signup-button {
  cursor: pointer;
  border: 0;
  padding: 7px var(--padding-xl);
  background-color: var(--color-springgreen);
  align-self: stretch;
  height: 35px;
  border-radius: var(--br-8xs);
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.si {
  color: rgba(197, 197, 197, 0.25);
  border: none;
  background-color: transparent;
  font-weight: bold;
}

.sp {
  color: rgba(197, 197, 197, 0.25);
  border: none;
  background-color: transparent;
  font-weight: bold;
  align-self: flex-start;
}

.login-button:hover {
  background-color: #e6e6e6;
}

  .signup-button:hover {
  background-color: #e6e6e6;
}
/* hover for a "go to signin btn"*/
.si:hover {
  text-decoration: underline;
  color:var(--color-springgreen) ;
}

.sp:hover {
  text-decoration: underline;
  color:var(--color-springgreen) ;
}
.login-button,
.login-home,
.login-section {
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
}
.login-section {
  margin: 0;
  width: 358px;
  border-radius: 10px;
  background-color: rgba(16, 40, 161, 0.437);
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 27.5px 50px;
  gap: var(--gap-31xl);
  max-width: 100%;
}

.signup-section {
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
}
.signup-section {
  margin: 0;
  width: 358px;
  border-radius: 10px;
  background-color: rgba(197, 197, 197, 0.25);
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 27.5px 50px;
  gap: var(--gap-31xl);
  max-width: 100%;
}

.login-home {
  width: 100%;
  height: 100vh;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 322.5px var(--padding-xl);
  background-image: url(./public/login-home@3x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  line-height: normal;
  letter-spacing: normal;
}
@media screen and (max-width: 750px) {
  .login1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 450px) {
  .login1 {
    font-size: 19px;
  }
  .login-wrapper {
    padding-left: var(--padding-xl);
    padding-right: var(--padding-xl);
    box-sizing: border-box;
  }
  .login-section {
    gap: var(--gap-6xl);
    padding: var(--padding-xl);
    box-sizing: border-box;
  }

  .signup-wrapper {
    padding-left: var(--padding-xl);
    padding-right: var(--padding-xl);
    box-sizing: border-box;
  }
  .signup-section {
    gap: var(--gap-6xl);
    padding: var(--padding-xl);
    box-sizing: border-box;
  }
}
