@charset "UTF-8";
/*------------------------------------------------------------------
[applicant-v2 — portal del postulante v2]

Entry point de estilos para las páginas del postulante con la identidad
visual nueva (home, login/registro, recuperación, vacantes). Se apoya en
las variables de marca de Mateo y en los componentes Bootstrap ya
cargados por las páginas existentes. No redefine Bootstrap; solo agrega
lo específico del portal.

Estructura:
  - variables       → tokens semánticos (alias a _variables.scss de Mateo)
  - base            → reset mínimo y contenedor raíz
  - components      → componentes de página (hero, split-layout, cards, modal)

Compila vía Gulp (task `watch`) a assets/css/applicant-v2.css
-------------------------------------------------------------------*/
/*Gradient variables*/
/*Background variables*/
/*gray variables*/
/*white variables*/
/*black variables*/
/*shadow variables*/
/*Dark Theme Variables*/
/*Transparent variables*/
/*
 * applicant-v2 / variables
 * Tokens de diseño del portal del postulante v2. Replica los tokens del
 * proyecto Next.js (applicant-web) en SCSS/CSS variables para que las
 * páginas PHP puedan consumirlos. Colores de marca definidos en HEX
 * para consistencia cross-browser (no dependemos de color-mix oklch).
 */
/*
 * applicant-v2 / base
 * Reset mínimo y defaults para las páginas del portal del postulante con
 * identidad visual nueva. Todo el CSS aquí usa prefijo .appv2-* para no
 * colisionar con Bootstrap ni con el template Noa existente.
 */
.appv2-root {
  min-height: 100vh;
  background: var(--body-bg, #f7f8f9);
  color: var(--body-color, #495057);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.appv2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/*
 * applicant-v2 / components
 * Componentes del portal del postulante v2 (home con login card embebido).
 * Replica el look del applicant-web Next.js usando CSS puro sobre
 * Bootstrap existente de Mateo.
 *
 * Prefijo: .appv2-*
 */
/* ============================================
   ROOT + LAYOUT BASE
   ============================================ */
.appv2-root {
  min-height: 100vh;
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
.appv2-root *, .appv2-root *::before, .appv2-root *::after {
  box-sizing: border-box;
}
.appv2-root h1, .appv2-root h2, .appv2-root h3, .appv2-root h4, .appv2-root h5, .appv2-root h6 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
.appv2-root a {
  text-decoration: none;
  color: inherit;
}
.appv2-root button {
  font-family: inherit;
  cursor: pointer;
}

.appv2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .appv2-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   BACKGROUND DECOR — grid + radial glow
   ============================================ */
.appv2-bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.appv2-bg-radial {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(238, 52, 50, 0.18) 0%, transparent 60%);
}

.appv2-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.appv2-bg-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/* ============================================
   NAV HEADER
   ============================================ */
.appv2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.appv2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 64px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .appv2-header-inner {
    height: 80px;
  }
}

.appv2-header-logo {
  display: flex;
  align-items: center;
}
.appv2-header-logo img {
  height: 28px;
  width: auto;
}
@media (min-width: 768px) {
  .appv2-header-logo img {
    height: 32px;
  }
}

.appv2-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 992px) {
  .appv2-nav {
    display: flex;
  }
}

.appv2-nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.appv2-nav-link:hover {
  background: #161616;
  color: #ffffff;
}

.appv2-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.appv2-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.appv2-icon-btn:hover {
  background: #161616;
  color: #ffffff;
}
.appv2-icon-btn svg, .appv2-icon-btn i {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.appv2-btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 1rem;
  background: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}
.appv2-btn-ghost:hover {
  background: #161616;
}

/* ============================================
   MAIN SPLIT LAYOUT — hero left + login right
   ============================================ */
.appv2-main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 5rem);
}

.appv2-split {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  align-items: center;
}

.appv2-split-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .appv2-split-grid {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 992px) {
  .appv2-split-grid {
    grid-template-columns: 1fr minmax(0, 460px);
    gap: 3rem;
    padding: 4rem 3rem;
  }
}

/* ============================================
   HERO (columna izquierda)
   ============================================ */
.appv2-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  animation: appv2-fade-in-up 0.8s ease-out both;
}

.appv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(22, 22, 22, 0.5);
  border: 1px solid #2a2a2a;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.appv2-eyebrow-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}
.appv2-eyebrow-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ee3432;
  border-radius: 50%;
  opacity: 0.75;
  animation: appv2-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.appv2-eyebrow-dot::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  background: #ee3432;
  border-radius: 50%;
}

.appv2-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .appv2-hero-title {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .appv2-hero-title {
    font-size: 5rem;
  }
}
.appv2-hero-title .appv2-rotator {
  color: #ee3432;
}
.appv2-hero-title .appv2-dot-brand {
  color: #ee3432;
}
/* Mantiene el rotator y el punto rojo siempre en la misma línea
   (evita que el "." caiga solo a una línea siguiente con palabras largas o con zoom). */
.appv2-rotator-wrap {
  display: inline-block;
  white-space: nowrap;
}

.appv2-hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}
@media (min-width: 768px) {
  .appv2-hero-subtitle {
    font-size: 1.125rem;
  }
}

/* ============================================
   SEARCH JOBS BAR
   ============================================ */
.appv2-search {
  margin-top: 2rem;
  max-width: 560px;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
}

.appv2-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}
.appv2-search-input-wrap i, .appv2-search-input-wrap svg {
  color: rgba(255, 255, 255, 0.82);
  width: 16px;
  height: 16px;
}

.appv2-search-input {
  flex: 1;
  min-height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.9375rem;
}
.appv2-search-input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================
   LOGIN CARD (columna derecha)
   ============================================ */
.appv2-login-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 6rem;
  animation: appv2-fade-in-right 0.8s ease-out 0.2s both;
}

.appv2-login-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 40px;
  background: radial-gradient(ellipse at top left, rgba(238, 52, 50, 0.25) 0%, rgba(238, 52, 50, 0.05) 40%, transparent 70%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.appv2-login-card {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  background: rgba(22, 22, 22, 0.85);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .appv2-login-card {
    padding: 2rem;
  }
}

.appv2-login-logo {
  margin-bottom: 1.5rem;
}
.appv2-login-logo img {
  height: 24px;
  width: auto;
}

.appv2-login-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.appv2-login-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.5rem 0;
}

/* Tabs "Ingresar / Crear cuenta" */
.appv2-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0.25rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
}

.appv2-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: none;
  border-radius: calc(6px - 2px);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.appv2-tab:hover {
  color: #ffffff;
}
.appv2-tab.is-active {
  background: #161616;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Form layout */
.appv2-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appv2-btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 44px;
  padding: 0 1rem;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.15s ease;
}
.appv2-btn-oauth:hover {
  background: #1a1a1a;
}
.appv2-btn-oauth svg {
  width: 16px;
  height: 16px;
}

.appv2-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.appv2-divider-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
}
.appv2-divider-text {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.82);
}

.appv2-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.appv2-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.appv2-link-sm {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ee3432;
  transition: color 0.15s ease;
}
.appv2-link-sm:hover {
  color: #ff5a3d;
}

.appv2-input-wrap {
  position: relative;
}

.appv2-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}
.appv2-input-icon i, .appv2-input-icon svg {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.appv2-input {
  width: 100%;
  min-height: 44px;
  padding: 0 1rem 0 2.5rem;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
@media (max-width: 480px) {
  .appv2-input { font-size: 16px; }
}
.appv2-input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}
.appv2-input:focus {
  outline: none;
  border-color: #ee3432;
  box-shadow: 0 0 0 3px rgba(238, 52, 50, 0.2);
}
.appv2-input[type=password] {
  padding-right: 2.75rem;
}

.appv2-input-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: color 0.15s ease;
}
.appv2-input-toggle:hover {
  color: #ffffff;
}
.appv2-input-toggle i, .appv2-input-toggle svg {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.appv2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 44px;
  padding: 0 1rem;
  margin-top: 0.5rem;
  background: #ee3432;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(238, 52, 50, 0.6);
  transition: background-color 0.15s ease, transform 0.1s ease;
}
.appv2-btn-primary:hover {
  background: #ff5a3d;
}
.appv2-btn-primary:active {
  transform: translateY(1px);
}
.appv2-btn-primary svg, .appv2-btn-primary i {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.appv2-login-footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.appv2-login-footer a {
  font-weight: 600;
  color: #ee3432;
}
.appv2-login-footer a:hover {
  color: #ff5a3d;
}

.appv2-error {
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  background: rgba(238, 52, 50, 0.1);
  border: 1px solid rgba(238, 52, 50, 0.3);
  border-radius: 6px;
  font-size: 0.875rem;
  color: #ff8a85;
}

.appv2-success {
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  font-size: 0.875rem;
  color: #4ade80;
}

/* ============================================
   JOBS MARQUEE (footer animated strip)
   ============================================ */
.appv2-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  background: #1a1a1a;
  padding: 0.75rem 0;
}
.appv2-marquee::before, .appv2-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.appv2-marquee::before {
  left: 0;
  background: linear-gradient(to right, #1a1a1a, transparent);
}
.appv2-marquee::after {
  right: 0;
  background: linear-gradient(to left, #1a1a1a, transparent);
}

.appv2-marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: appv2-marquee 40s linear infinite;
}

.appv2-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}
.appv2-marquee-item-badge {
  padding: 0.125rem 0.5rem;
  background: rgba(238, 52, 50, 0.15);
  color: #ff5a3d;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
}
.appv2-marquee-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes appv2-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes appv2-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes appv2-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes appv2-ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .appv2-root *, .appv2-root *::before, .appv2-root *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   FORGOT / RECUPERAR CONTRASEÑA (dark theme)
   ============================================ */
.appv2-forgot-wrap {
  position: relative;
  display: flex;
  min-height: calc(100vh - 5rem);
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  z-index: 10;
}

.appv2-forgot-card {
  width: 100%;
  max-width: 28rem;
  position: relative;
  z-index: 1;
}

.appv2-forgot-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.15s ease;
}
.appv2-forgot-back:hover {
  color: #ffffff;
}
.appv2-forgot-back i, .appv2-forgot-back svg {
  width: 16px;
  height: 16px;
}

.appv2-forgot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  background: rgba(238, 52, 50, 0.15);
  color: #ff5a3d;
  border: 1px solid rgba(238, 52, 50, 0.3);
  border-radius: 10px;
}
.appv2-forgot-icon i, .appv2-forgot-icon svg {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.appv2-forgot-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .appv2-forgot-title {
    font-size: 2.25rem;
  }
}

.appv2-forgot-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.appv2-forgot-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.appv2-input-light {
  width: 100%;
  min-height: 52px;
  padding: 0 1rem 0 2.5rem;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.appv2-input-light::placeholder {
  color: rgba(255, 255, 255, 0.82);
}
.appv2-input-light:focus {
  outline: none;
  border-color: #ee3432;
  box-shadow: 0 0 0 3px rgba(238, 52, 50, 0.2);
}

.appv2-label-light {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.appv2-input-icon-light {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}
.appv2-input-icon-light i, .appv2-input-icon-light svg {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.appv2-btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  background: #ee3432;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(238, 52, 50, 0.5);
  transition: background-color 0.15s ease, transform 0.1s ease;
}
.appv2-btn-primary-lg:hover {
  background: #ff5a3d;
}
.appv2-btn-primary-lg:active {
  transform: translateY(1px);
}

.appv2-forgot-footer {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.appv2-forgot-footer a {
  font-weight: 600;
  color: #ff5a3d;
  transition: color 0.15s ease;
}
.appv2-forgot-footer a:hover {
  color: #ee3432;
}

/* ============================================
   VACANTES (listado público con modal gated)
   ============================================ */
.appv2-vac-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ee3432;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.15s ease;
}
.appv2-vac-btn-primary:hover {
  background: #ff5a3d;
}

.appv2-vac-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #2a2a2a;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .appv2-vac-hero {
    padding: 4rem 0;
  }
}

.appv2-vac-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .appv2-vac-hero-inner {
    padding: 0 3rem;
  }
}

.appv2-vac-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(238, 52, 50, 0.1);
  border: 1px solid rgba(238, 52, 50, 0.4);
  border-radius: 9999px;
  color: #ff5a3d;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.appv2-vac-hero-badge i {
  font-size: 12px;
}

.appv2-vac-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 48rem;
}
@media (min-width: 768px) {
  .appv2-vac-hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .appv2-vac-hero-title {
    font-size: 3.75rem;
  }
}
.appv2-vac-hero-title .appv2-hl {
  color: #ee3432;
}

.appv2-vac-hero-subtitle {
  margin-top: 1.25rem;
  color: #d1d5db;
  font-size: 1rem;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .appv2-vac-hero-subtitle {
    font-size: 1.125rem;
  }
}

.appv2-vac-search {
  margin-top: 2rem;
  max-width: 48rem;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.appv2-vac-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}
.appv2-vac-search-input-wrap i {
  color: #ee3432;
  font-size: 18px;
}

.appv2-vac-search-input {
  flex: 1;
  min-height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9375rem;
}
.appv2-vac-search-input::placeholder {
  color: #6b7280;
}

.appv2-vac-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 992px) {
  .appv2-vac-body {
    padding: 2.5rem 3rem;
  }
}

.appv2-vac-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .appv2-vac-grid {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

.appv2-vac-sidebar {
  display: none;
}
@media (min-width: 992px) {
  .appv2-vac-sidebar {
    display: block;
  }
}

.appv2-vac-sidebar-inner {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.appv2-vac-sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.appv2-vac-sidebar-title i {
  color: #9ca3af;
  font-size: 14px;
}

.appv2-vac-filter-group .appv2-vac-filter-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.appv2-vac-filter-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.appv2-vac-filter-opt:hover {
  background: rgba(20, 20, 20, 0.6);
}
.appv2-vac-filter-opt .check {
  width: 14px;
  height: 14px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  border-radius: 3px;
  display: inline-block;
}
.appv2-vac-filter-opt .label {
  color: #e5e7eb;
  font-size: 0.875rem;
}
.appv2-vac-filter-opt .count {
  color: #6b7280;
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
}

/* JOB CARDS */
.appv2-jobs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appv2-job-card {
  display: block;
  position: relative;
  padding: 1.5rem;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  text-align: left;
  width: 100%;
}
.appv2-job-card:hover {
  border-color: rgba(238, 52, 50, 0.5);
  background: rgba(22, 22, 22, 0.8);
  transform: translateY(-1px);
}
.appv2-job-card.is-featured {
  border-color: rgba(238, 52, 50, 0.35);
  background: linear-gradient(to bottom right, rgba(238, 52, 50, 0.05), rgba(20, 20, 20, 0.5));
}

.appv2-job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.appv2-job-company {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.appv2-job-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(238, 52, 50, 0.15);
  color: #ff5a3d;
  border: 1px solid rgba(238, 52, 50, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.appv2-job-role {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .appv2-job-role {
    font-size: 1.25rem;
  }
}

.appv2-job-company-name {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

.appv2-job-badge-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  background: rgba(238, 52, 50, 0.15);
  border: 1px solid rgba(238, 52, 50, 0.35);
  border-radius: 9999px;
  color: #ff5a3d;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.appv2-job-badge-featured i {
  font-size: 10px;
}

.appv2-job-posted {
  font-size: 0.75rem;
  color: #6b7280;
  flex-shrink: 0;
}

.appv2-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.appv2-job-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #d1d5db;
  font-size: 0.75rem;
}
.appv2-job-chip i {
  font-size: 11px;
  opacity: 0.7;
}
.appv2-job-chip.is-remoto {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}
.appv2-job-chip.is-hibrido {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}
.appv2-job-chip.is-salary {
  color: #a3d97a;
  font-weight: 600;
}

.appv2-job-desc {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.appv2-job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.appv2-job-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  flex: 1;
}

.appv2-job-tag {
  padding: 0.125rem 0.5rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #d1d5db;
  font-size: 0.6875rem;
}

.appv2-job-apply {
  color: #ff5a3d;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.appv2-job-apply i {
  font-size: 14px;
  transition: transform 0.15s ease;
}

.appv2-job-card:hover .appv2-job-apply i {
  transform: translateX(2px);
}

/* Footer CTA */
.appv2-vac-cta {
  margin-top: 2rem;
  padding: 2.5rem;
  background: linear-gradient(to bottom right, rgba(238, 52, 50, 0.1), rgba(20, 20, 20, 0.5));
  border: 1px solid rgba(238, 52, 50, 0.25);
  border-radius: 16px;
  text-align: center;
}
.appv2-vac-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .appv2-vac-cta h3 {
    font-size: 1.875rem;
  }
}
.appv2-vac-cta p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}
.appv2-vac-cta .appv2-vac-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.appv2-vac-cta .appv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.appv2-vac-cta .appv2-btn-outline:hover {
  background: #161616;
}
.appv2-vac-cta .appv2-btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #ee3432;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.appv2-vac-cta .appv2-btn-filled:hover {
  background: #ff5a3d;
}

/* ============================================
   MODAL GATED "Regístrate para ver esta vacante"
   ============================================ */
.appv2-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.appv2-modal-backdrop.is-active {
  display: flex;
  opacity: 1;
}

.appv2-modal {
  position: relative;
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.35);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.appv2-modal-backdrop.is-active .appv2-modal {
  transform: scale(1);
}

.appv2-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #9ca3af;
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.appv2-modal-close:hover {
  background: #1a1a1a;
  color: #fff;
}
.appv2-modal-close i {
  font-size: 18px;
}

.appv2-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgba(238, 52, 50, 0.15);
  border: 1px solid rgba(238, 52, 50, 0.3);
  border-radius: 10px;
  color: #ff5a3d;
}
.appv2-modal-icon i {
  font-size: 24px;
}

.appv2-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.appv2-modal-subtitle {
  color: #d1d5db;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.appv2-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================
   FOOTER — copyright + language switcher
   ============================================ */
.appv2-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid #2a2a2a;
  background: rgba(10, 10, 10, 0.85);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.appv2-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .appv2-footer-inner {
    padding: 0 3rem;
  }
}

.appv2-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 576px) {
  .appv2-footer-copy {
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

.appv2-footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .appv2-footer-lang {
    width: 100%;
    justify-content: center;
  }
}

.appv2-footer-lang-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.appv2-footer-lang-btn:hover {
  color: #ffffff;
  background: #161616;
}
.appv2-footer-lang-btn.is-active {
  color: #ee3432;
}

.appv2-footer-lang-sep {
  color: #2a2a2a;
  user-select: none;
}

/* ============================================
   REGISTER FLOW (multi-step: Datos Personales / Contacto)
   Usado por login.php?mode=register
   ============================================ */

/* Pill superior "Portal de Aplicantes" en hero izquierdo */
.appv2-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(22, 22, 22, 0.5);
  border: 1px solid #2a2a2a;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  width: fit-content;
}

/* Feature cards del hero izquierdo (reemplazo de .feature-cards) */
.appv2-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
  max-width: 460px;
}

.appv2-feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.appv2-feature-card:hover {
  border-color: rgba(238, 52, 50, 0.4);
  background: rgba(22, 22, 22, 0.8);
}

.appv2-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(238, 52, 50, 0.15);
  color: #ee3432;
  border: 1px solid rgba(238, 52, 50, 0.3);
}
.appv2-feature-icon i, .appv2-feature-icon svg {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.appv2-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.appv2-feature-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.appv2-feature-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Stats footer del hero izquierdo */
.appv2-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
}

/* Progress indicator (paso 1 → paso 2) */
.appv2-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.appv2-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}

.appv2-progress-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.appv2-progress-step.is-active {
  color: #ffffff;
}
.appv2-progress-step.is-active .appv2-progress-step-num {
  background: #ee3432;
  border-color: #ee3432;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(238, 52, 50, 0.15);
}

.appv2-progress-step.is-completed {
  color: rgba(255, 255, 255, 0.82);
}
.appv2-progress-step.is-completed .appv2-progress-step-num {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.appv2-progress-sep {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  min-width: 12px;
}

/* Form row (half-half: Ext + Teléfono) */
.appv2-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .appv2-form-row {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  }
}

/* Select: aseguramos que appv2-input funcione también para <select> */
select.appv2-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffffb3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px 16px;
  cursor: pointer;
}
select.appv2-input::-ms-expand {
  display: none;
}
select.appv2-input option {
  background: #0a0a0a;
  color: #ffffff;
}

/* Input sin icono a la izquierda (registro usa labels con icono, no input-icon) */
.appv2-input--plain {
  padding-left: 1rem;
}

/* Date input: ajustes para que el indicador nativo se vea OK en dark */
input.appv2-input[type="date"] {
  color-scheme: dark;
}

/* Hint pequeño debajo de input (errores de cédula, edad, etc.) */
.appv2-hint {
  font-size: 0.75rem;
  color: #ff8a85;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Checkbox group (términos, política) */
.appv2-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  transition: border-color 0.15s ease;
}
.appv2-checkbox-group:hover {
  border-color: #3a3a3a;
}
.appv2-checkbox-group input[type="checkbox"] {
  flex: none;
  margin-top: 0.125rem;
  width: 16px;
  height: 16px;
  accent-color: #ee3432;
  cursor: pointer;
}
.appv2-checkbox-group label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}
.appv2-checkbox-group label a {
  color: #ee3432;
  font-weight: 600;
}
.appv2-checkbox-group label a:hover {
  color: #ff5a3d;
}

/* Form actions (Atrás + Completar) */
.appv2-form-actions {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.appv2-form-actions .appv2-btn-primary {
  margin-top: 0;
  flex: 1;
}

/* Back button (secundario, matching appv2-btn-oauth) */
.appv2-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.25rem;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.appv2-btn-back:hover {
  background: #161616;
  color: #ffffff;
  border-color: #3a3a3a;
}
.appv2-btn-back i, .appv2-btn-back svg {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

/* Loader overlay (fullscreen spinner para verificación de correo) */
.appv2-loader-overlay {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
}
.appv2-loader-overlay.activo {
  display: flex;
}
.appv2-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #ee3432;
  border-radius: 50%;
  animation: appv2-spin 0.8s linear infinite;
}
.appv2-loader-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
@keyframes appv2-spin {
  to { transform: rotate(360deg); }
}

/* Password toggle — reusa .appv2-input-toggle ya existente (no hace falta nuevo)
   pero aseguramos que funcione bien con el layout del registro */

/* Recuperar contraseña inline link (bajo el submit del login) */
.appv2-recover-link {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.appv2-recover-link a {
  color: #ee3432;
  font-weight: 600;
}
.appv2-recover-link a:hover {
  color: #ff5a3d;
}
