.elementor-1768 .elementor-element.elementor-element-54998d4{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-1768 .elementor-element.elementor-element-54998d4{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-7b78a62 */@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* --- CONTENEDOR RAÍZ --- */
.login-container {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
}

/* --- LADO IZQUIERDO: BANNER AZUL DE CEUCE --- */
.login-left {
  flex: 1;
  background: linear-gradient(135deg, #101d6b 0%, #0a1244 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Textura sutil circular de fondo */
.login-left::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 1%, transparent 80%);
  pointer-events: none;
}

.left-content {
  max-width: 450px;
  margin: auto 0;
}

.logo-icon {
  color: #ffffff;
  margin-bottom: 30px;
  animation: float-animation 4s ease-in-out infinite;
}

@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.login-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.wave-emoji {
  display: inline-block;
  animation: wave-animation 2.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave-animation {
  0%, 100% { transform: rotate( 0deg) }
  10%, 30% { transform: rotate(14deg) }
  20% { transform: rotate(-8deg) }
  40% { transform: rotate(-4deg) }
  50% { transform: rotate(10deg) }
}

.login-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
}

.left-footer {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* --- LADO DERECHO: FORMULARIO INTERACTIVO --- */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background-color: #ffffff;
}

.right-content {
  width: 100%;
  max-width: 420px;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #101d6b;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.login-right h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.signup-text {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hover-link {
  color: #101d6b;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hover-link:hover {
  color: #2b3cd4;
}

/* --- INPUTS ANIMADOS (FLOATING LABELS) --- */
.login-form {
  margin-bottom: 30px;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  transition: background-color 0.3s ease, height 0.3s ease;
}

.input-group input {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: #000000;
  position: relative;
  z-index: 2;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;
  color: #888888;
  pointer-events: none;
  transition: 0.25s ease all;
  z-index: 1;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: #101d6b;
  font-weight: 600;
}

.input-group:focus-within::after {
  background-color: #101d6b;
  height: 2px;
}

/* --- EFECTOS HOVER EN BOTONES --- */
.btn-login {
  width: 100%;
  padding: 14px;
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.btn-login:active {
  transform: translateY(0px);
}

.btn-google {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #444444;
  border: 1px solid #dddddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.btn-google:hover {
  background-color: #f8f9fa;
  border-color: #cccccc;
  color: #111111;
}

.forgot-password {
  text-align: center;
  font-size: 0.9rem;
  color: #555555;
}

/* --- MEDIA QUERIES: OPTIMIZACIÓN RESPONSIVA (TABLETS Y SMARTPHONES) --- */
@media (max-width: 991px) {
  .login-container {
    flex-direction: column; /* Apilado vertical para Tablets/Móvil */
  }

  /* Ajustes adaptativos para el banner superior */
  .login-left {
    padding: 40px 24px;
    min-height: auto;
    justify-content: center;
    text-align: center;
  }

  .left-content {
    margin: 0 auto;
    max-width: 100%;
  }

  .logo-icon {
    margin-bottom: 15px;
  }

  .login-left h1 {
    font-size: 2.2rem;
  }
  
  .login-left p {
    font-size: 1rem;
  }

  .left-footer {
    display: none; /* Se oculta para aligerar la carga visual en pantallas compactas */
  }

  /* Ajustes adaptativos para el formulario */
  .login-right {
    padding: 40px 24px;
  }
  
  .brand-name {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.6rem;
  }
  
  .login-right h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .signup-text {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  /* Ajustes hiper-compactos para celulares pequeños */
  .login-left h1 {
    font-size: 1.8rem;
  }
  
  .login-left {
    padding: 30px 16px;
  }

  .login-right {
    padding: 30px 16px;
  }
  
  .btn-login, .btn-google {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}/* End custom CSS */