@charset "UTF-8";
/* Splash full screen */
#splash {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  width: 100%;
  background-image: url("../images/bg-blue.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* Logo */
}
#splash .splash-logo {
  width: 200px;
  animation: zoomAnimation 3s ease-in-out forwards;
}
#splash .bayer {
  position: absolute;
  bottom: 60px;
}
#splash .bayer img {
  width: 70px;
}

/* Animación */
@keyframes zoomAnimation {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  30% {
    transform: scale(1.5);
    opacity: 1;
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.6s ease;
  background-image: url("../images/blue-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.btn-pressed {
  transform: scale(0.95);
  box-shadow: 0 0 20px var(--color-primary);
  transition: 0.2s ease;
}

/* Login  */
/* Contenedor general */
.login-container {
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  /* Header */
}
.login-container .login-header {
  text-align: center;
  padding: 20px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  /* necesario para posicionar el back */
}
.login-container .login-header .back-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 8px;
  color: #111;
}
.login-container .login-header .back-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.login-container {
  /* Contenido */
}
.login-container .login-content {
  padding: 24px;
}
.login-container .login-content .section-title {
  margin-bottom: 1.5rem;
}
.login-container .login-content .section-title h3 {
  margin-bottom: 0;
}
.login-container .login-content .nes-field {
  margin-bottom: 16px;
}
.login-container .login-content .nes-field label {
  font-size: 18px;
  font-weight: 700;
}
.login-container .login-content {
  /* Paso 2 - password layout */
}
.login-container .login-content .password-group .password-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.login-container .login-content .password-group .password-row input {
  flex: 1;
}
.login-container .login-content .password-group .password-row .show-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 0 6px;
  color: #777;
}
.login-container .login-content .password-group .password-row .show-btn:hover {
  color: #111;
}
.login-container .login-content {
  /* Lista de requisitos */
}
.login-container .login-content .requirements {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.login-container .login-content .requirements li {
  font-size: 13px;
  margin: 8px 0;
  color: #777;
  transition: 0.2s ease;
}
.login-container .login-content .requirements li.valid {
  color: var(--success, #22c55e);
  font-weight: 600;
}
.login-container .login-content .requirements li.invalid {
  color: var(--error, #ef4444);
}
.login-container .login-content {
  /* Botón */
}
.login-container .login-content .primary {
  width: 100%;
  height: 50px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  background: #C3EC76;
  border-right: 4px solid #7DC120;
  border-bottom: 4px solid #7DC120;
}
.login-container .login-content .primary:hover {
  transform: translateY(-2px);
}
.login-container .login-content .primary:disabled {
  background: #F3F3F3;
  border-right: 4px solid #acacac;
  border-bottom: 4px solid #acacac;
  cursor: not-allowed;
  transform: none;
}

.success-screen {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  background-image: url("../images/BG.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
}
.success-screen .success-content {
  animation: successFade 0.6s ease;
}
.success-screen .success-content img {
  width: 64px;
  margin-bottom: 1.5rem;
}
.success-screen .success-content .base {
  margin-top: 1.5rem;
}

.error-screen {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  background-image: url("../images/BG-error.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
}
.error-screen .error-content {
  animation: successFade 0.6s ease;
}
.error-screen .error-content img {
  width: 64px;
  margin-bottom: 1.5rem;
}
.error-screen .error-content .base {
  margin-top: 1.5rem;
}
.error-screen .error-content .primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  background: #ffffff;
  border-right: 4px solid #E91E63;
  border-bottom: 4px solid #E91E63;
  color: #E91E63;
}
.error-screen .error-content .primary:hover {
  transform: translateY(-2px);
}

@keyframes successFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* breadcrum  */
@media  {
  .nes-input,
  .nes-textarea {
    border-image-repeat: stretch !important;
  }
}
/* Oculto */
.hidden {
  display: none;
}/*# sourceMappingURL=home.css.map */