.none {
  display: none;
}

#auth-modal {
  border-radius: 6px;
  background-color: white;
  width: 668px;
  height: fit-content;
  padding: 32px 64px;
}

a.oauth-google:link,
a.oauth-google:visited {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid black;
  border-radius: 20px;
  padding: 8px 16px;
  margin-top: 32px;
  height: 40px;
  width: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
}

a.oauth-google:hover,
a.oauth-google:focus {
  background-color: rgb(245, 245, 245);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.h-g {
  height: 24px;
  position: absolute;
  left: 16px;
  top: 6px;
}

.just-bet {
  justify-content: space-between;
}

.auth-divider {
  height: 1px;
  background-color: #cacaca;
  width: 84%;
  position: relative;
  z-index: 1;
  margin: 36px 0px;
}

.auth-other {
  padding: 0px 16px;
  background-color: white;
  z-index: 3;
  position: absolute;
  /* top: -8px;
  left: 40px; */
  text-align: center;
  color: #7a7a7a;
}


#auth-form {
  width: 100%;
  position: relative;
  /* border: 1px solid black; */
}

.auth-in {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 40px;
  border: 2px solid black;
  border-radius: 20px;
  padding-left: 24px;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

#auth-form-filler {
  height: 40px;
  max-height: 40px;
  /* background-color: purple; */
}

.errors-in {
  min-height: 28px;
  color: red;
  font-size: 14px;
  margin-bottom: 16px;
}

.labels-in {
  position: absolute;
  top: 8px;
  left: 24px;
  color: #7a7a7a;
  font-size: 18px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}


.auth-in:hover {
  background-color: rgb(245, 245, 245);
}

.auth-in:focus {
  border: 2px solid #096a2e;
  background-color: rgb(245, 245, 245);
}

.auth-in:focus + .labels-in,
.auth-in:not(:placeholder-shown) + .labels-in {
  top: -24px;
  color: black;
  font-weight: 600;
}

.login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  border: 2px solid black;
  border-radius: 6px;
  height: 40px;
  width: 100%;
  background-color: black;
  color: white;
  font-size: 16px;
  transition: all 0.8s ease-in-out;
  z-index: 8;
}

.login-submit:disabled {
  background-color: #ccc;
  border: 2px solid #ccc;
  cursor: not-allowed;
  transition: all 0.2s ease-in-out;
}

.login-submit:disabled:hover {
  color: white;
}

.login-submit.send {
  bottom: -58px;
  font-weight: 600;
}

.trans-02 {
  transition: all 0.2s ease-in-out;
}

.login-submit:hover,
.login-submit:focus {
  color: #8ABE53;
}

#mail-ico {
  margin-right: 8px;
  fill: white;
  transition: all 0.1s ease-in-out;
}

#mail-ico.hidden {
  display: none;
}

#strength-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0px;
  max-height: 32px;
  background-color: white;
  margin-bottom: 8px;
}

#strength-level {
  margin-top: 6px;
  height: 0px;
  max-height: 8px;
  width: 0;
  max-width: 90%;
  transition: width 0.5s ease;
  border-radius: 4px;
}

#strength-text {
  width: 100%;
  font-size: 16px;
  font-weight: 600px;
  margin-top: 2px;
  text-align: center;
}

#auth-err {
  margin-top: 16px;
  min-height: 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
}

a.auth:link,
a.auth:visited {
  text-decoration: none;
  color: #8ABE53;
}

a.auth:hover {
  text-decoration: underline;
}

#password {
  font-size: 24px;
}

/* .signup-and {
  margin: 0 8px;
} */

.signup-login {
  margin-top: 16px;
  height: 48px;
  justify-content: space-around;
}

.show-pass {
  border: none;
  height: 24px;
  width: 24px;
  padding: 0px;
  margin: 0px;
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: white;
  z-index: 8;
}

#pass-show-ico {
  display: block;
}

#pass-hide-ico {
  display: none;
}

a.login-forgot:link,
a.login-forgot:visited {
  font-size: "18px";
  color: var(--accent);
  text-decoration: none;
}

a.login-forgot:hover {
  text-decoration: underline;
}

/* Responsive styles for login/signup modal */
@media (max-width: 768px) {
  #auth-modal {
    width: 90%;
    max-width: 500px;
    padding: 24px 32px;
  }

  .auth-divider {
    width: 100%;
    margin: 24px 0;
  }

  .auth-in {
    font-size: 16px;
  }

  .labels-in {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #auth-modal {
    width: 95%;
    padding: 20px 24px;
  }

  a.oauth-google:link,
  a.oauth-google:visited {
    font-size: 14px;
    padding: 8px 12px;
  }

  .h-g {
    height: 20px;
    left: 12px;
    top: 8px;
  }

  .auth-divider {
    margin: 20px 0;
  }

  .auth-in {
    height: 40px;
    font-size: 15px;
    padding-left: 20px;
  }

  .labels-in {
    font-size: 15px;
    left: 20px;
    top: 10px;
  }

  .login-submit {
    height: 40px;
    font-size: 15px;
  }

  #strength-text {
    font-size: 14px;
  }

  .signup-login {
    margin-top: 12px;
    height: 40px;
    font-size: 14px;
  }
}
