/* FONDO GENERAL */
body {
  background-color: #f3f6f9;
  min-height: 100vh;
}

/* CONTENEDOR CENTRAL */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD PRINCIPAL */
.login-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
  overflow: hidden;
  max-width: 950px;
  width: 100%;
}

/* COLUMNA IZQUIERDA */
.login-left {
  padding: 50px 45px;
}

.login-left h4 {
  font-weight: 700;
}

/* INPUTS */
.form-control {
  height: 45px;
  border-radius: 10px;
}

.form-control:focus {
  border-color: #0d3bdc;
  box-shadow: 0 0 0 .15rem rgba(13,59,220,.2);
}

/* BOTÓN */
.btn-login {
  background: #1f2b6c;
  border: none;
  height: 45px;
  border-radius: 10px;
  font-weight: 600;
}

/* COLUMNA DERECHA OSCURA */
.login-right {
  background: linear-gradient(180deg, #050b24, #0e1541);
  color: #fff;
  padding: 50px 40px;
  position: relative;
}

.login-right h5 {
  font-weight: 600;
}

.login-right small {
  color: #9aa4c7;
}

/* PANEL DERECHO OCULTO EN MOBILE */
@media (max-width: 767px) {
  .login-right {
    display: none;
  }
}

/* OJO PASSWORD */
.password-eye {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}

/* 2FA */
.digit-input {
  width: 36px;
  height: 38px;
  border-radius: 8px;
  background: #1f2b6c;
  border: none;
  color: #fff;
  font-weight: bold;
}

.form-wrapper {
  max-width: 320px;   /* controla el ancho */
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

/* INPUTS MODERNOS */
.form-control {
  height: 40px;
  font-size: 0.85rem;
  border-radius: 10px;
  background-color: #f1f3f6;
  border: 1px solid #e0e4ea;
}

.form-control::placeholder {
  color: #9aa1ab;
}

.form-control:focus {
  background-color: #fff;
  border-color: #1f2b6c;
  box-shadow: 0 0 0 .15rem rgba(31,43,108,.15);
}

/* CHECKBOX */
.custom-control-label {
  font-size: 0.8rem;
  color: #666;
}

/* BOTÓN */
.btn-login {
  height: 42px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ICONO OJO */
.password-eye {
  position: absolute;
  right: 14px;
  top: 70%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #888;
}

.form-wrapper {
  animation: fadeIn .6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
