@media (max-width: 900px) {
  .login-divider-wave {
    display: none !important;
  }
}
/* Onda divisoria SVG entre columnas del login */
.login-divider-wave {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
  transform: translateX(-50%);
}
/* Typewriter + fade-out effect para mensaje destacado */
.typewriterfade-container {
  width: 100%;
  max-width: 350px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.typewriterfade-text {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 1.05rem;
  color: #4d4c4c;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-right: 2px solid #ff7e5f;
  white-space: pre-line;
  overflow: hidden;
  letter-spacing: 0.5px;
  animation: blink-caret 0.8s step-end infinite;
}
/* Gradient text animado para mensaje destacado */
.gradienttext-container {
  width: 100%;
  max-width: 350px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.gradienttext {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 1.05rem;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
  background: linear-gradient(90deg, #ff7e5f, #feb47b, #43cea2, #185a9d);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientmove 3.5s ease-in-out infinite;
}
@keyframes gradientmove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Fade-in con escala para texto destacado */
.fadein-container {
  width: 100%;
  max-width: 350px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.fadein-text {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 1.05rem;
  color: #ff7e5f;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.95);
  animation: fadein-scale 1.2s cubic-bezier(.42,0,.58,1.0) 0.2s forwards;
}
@keyframes fadein-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Typewriter effect styles */
/* Typewriter effect styles mejorado para login box */
.typewriter-container {
  width: 100%;
  max-width: 350px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.typewriter-text {
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 1.05rem;
  color: #636261;
  border-right: 2px solid #ff7e5f;
  white-space: pre-line;
  overflow: hidden;
  letter-spacing: 0.5px;
  animation: blink-caret 0.8s step-end infinite;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #ff7e5f; }
}
/* Estilos modernos para el login tipo POS */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  background: #f5f6fa;
}

.login-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: #fff;
  padding: 40px 20px;
}

.login-left .login-image {
  width: 320px;
  max-width: 90%;
  margin-bottom: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.login-left .login-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.login-left .login-desc {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.95;
}

.login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 40px 20px;
}

.login-form {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-form h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.login-form input {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  margin-bottom: 8px;
}

.login-form button {
  padding: 12px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.login-form button:hover {
  background: linear-gradient(90deg, #feb47b 0%, #ff7e5f 100%);
}

.login-form .login-link {
  text-align: center;
  margin-top: 10px;
  font-size: 0.95rem;
}

.login-form .login-link a {
  color: #ff7e5f;
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 900px) {
  .login-wrapper {
    flex-direction: column;
  }
  .login-left, .login-right {
    flex: none;
    width: 100%;
    min-height: 320px;
    padding: 32px 12px;
  }
  .login-left {
    border-radius: 0 0 32px 32px;
  }
}
