@charset "UTF-8";
/* ------------- Reset & base ------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  height: 100%;
  color: #212529;
}

/* ------------- Fondo degradado animado ------------- */
.bg-gradiente {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #0077ff, #6f00ff, #ff4d97);
  background-size: 240% 240%;
  animation: mover 15s ease infinite;
  z-index: -2;
}

@keyframes mover {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* ------------- Tarjeta (glassmorphism) ------------- */
.card-login {
  width: min(90%, 380px);
  margin: 6vh auto;
  padding: 40px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Solo página de login: centrar la tarjeta en el medio de la pantalla */
body.page-login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
body.page-login .card-login {
  margin: 0;
}

.titulo {
  font-weight: 600;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* ------------- Formulario ------------- */
.form-control {
  position: relative;
  margin-bottom: 24px;
}

.form-control input {
  width: 100%;
  padding: 14px 12px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-control label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transition: 0.2s ease;
}

/* animación etiqueta flotante */
.form-control input:not(:-moz-placeholder-shown) {
  border-color: #fff;
}
.form-control input:focus,
.form-control input:not(:placeholder-shown) {
  border-color: #fff;
}

.form-control input:not(:-moz-placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 0 6px;
  border-radius: 6px;
  color: #fff;
}

.form-control input:focus + label,
.form-control input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 0 6px;
  border-radius: 6px;
  color: #fff;
}

/* ------------- Contraseña: ojito dentro del input ------------- */
.form-control.password-field {
  position: relative;
}

.form-control.password-field input {
  padding-right: 44px;
}

.form-control.password-field .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.form-control.password-field .toggle-password:hover {
  color: #fff;
}

.form-control.password-field .toggle-password:active {
  opacity: 0.85;
}

/* ------------- Botón primario ------------- */
.btn-primary {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: #ffffff;
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* ------------- Links extra ------------- */
.extra-links {
  margin-top: 26px;
  font-size: 14px;
  color: #fff;
}

.extra-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}

.extra-links a:hover {
  opacity: 0.9;
}

/* ------------- Google Sign-In ajustado ------------- */
.g_id_signin {
  margin: 14px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.marca-agencia {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* -------- Checkbox vendedor estilizado -------- */
.form-check-vendedor {
  text-align: left;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.form-check-vendedor input[type=checkbox] {
  margin-right: 8px;
  transform: scale(1.1);
  accent-color: #fff;
}

/* ------------- Responsive ------------- */
@media (max-width: 480px) {
  .card-login {
    padding: 32px 24px;
  }
}/*# sourceMappingURL=login.css.map */