/* Color de fondo login */

.bg-login {
  background-color: #ffd900;
}

.input-invalid {
  border: 2px red solid;
}

.disable-background {
  position: fixed;
  top: 0;
  left: 0;
  background: #2d2d2d;
  opacity: 0.8;
  z-index: 998;
  height: 100%;
  width: 100%;
}

.contentLoading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  align-items: center;
}

.loading {
  width: 100px;
  height: 100px;
  color: #ffc107;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.toggle-password-span {
  background-color: transparent;
  border: none;
  color: #b664d2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  user-select: none;
  padding: 2px;
}

.toggle-password-span:focus,
.toggle-password-span:active,
.toggle-password-span:hover {
  outline: none;
  color: #b664d2; /* Mantiene el mismo color en todos los estados */
}
