:root {
  --navy:   #0E2250;
  --blue:   #1A3F8F;
  --blue2:  #1E5BC6;
  --green:  #0D8A4E;
  --green2: #16C172;
  --green3: #22EE8A;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100vw; height: 100vh;
  overflow: hidden;
  display: flex;
}

/* ══════════════════════
   IZQUIERDA — Formulario blanco
══════════════════════ */
.left-card {
  width: 40%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 26px;
  position: relative;
}

/* barra de acento superior */
.left-card::before {
  content: '';
  position: absolute;
  top: 0; left-card: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue2), var(--green2));
}

.left-card-logo {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 6px;
}

.left-card-sub {
  font-size: 13px;
  color: #8A96A8;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group { width: 100%; margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #5A6880;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #F4F7FF;
  border: 1.5px solid #DDE5F5;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: #1a1a3e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: all 0.2s;
}
.form-input:focus {
  border-color: var(--blue2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,91,198,0.07);
}
.form-input::placeholder { color: #B0BAC9; }

.login-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.login-btn:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(14,34,80,0.2);
}

a.recover {
  color: var(--blue2);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
a.recover:hover { color: var(--navy); }

a.left-card-footer {
  position: absolute;
  bottom: 20px;
  font-size: 10.5px;
  color: #BDC5D0;
  letter-spacing: 0.4px;
  text-align: center;
}


/* ══════════════════════
   DERECHA — Panel de marca oscuro
══════════════════════ */
.right-card {
  flex: 1;
  background: linear-gradient(155deg, var(--navy) 0%, #0A1F52 35%, #062617 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
}

/* orbes de luz de fondo */
.right-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(22,193,114,0.18) 0%, transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(26,79,216,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* anillos decorativos */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
.tagline span { color: var(--green3); }

.tagline-desc {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  text-align: center;
  max-width: 360px;
  line-height: 1.7;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.badges {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.badge:hover { background: rgba(255,255,255,0.12); }

.green-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green2);
  border-radius: 50%;
}


@media (max-width: 992px) {
  .right-card{
    display: none;
  }

  .left-card {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 26px;
    position: relative;
  }
}