.auth-main {
  background-color: rgba(100,100,0,0.1);
  margin: auto;
  text-align: center;
  width: 80%;
  padding: 16px;
  box-sizing: border-box;
  font-size: 20px;
}

.auth-password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-password-input-container input {
  padding-right: 40px !important;
  flex: 1;
}

.auth-password-toggle {
  position: absolute;
  right: 0px;
  top: 0px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.auth-password-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.auth-password-toggle img {
  width: 25px;
  height: 25px;
}

.auth-hide-password {  
  opacity: 0.5;
}

.auth-show-password {  
  opacity: 1;
}

.auth-form > label > em {
  font-size: 16px;
}

.auth-main button {
  font-size: 20px;
} 

.auth-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 16px;
}

/* ========== MOBILE STYLES ========== */
@media only screen and (max-width: 600px) {

  .auth-main {
    width: 90%;
  }

}