@font-face {
  font-family: "Acumin Variable Concept";
  src: url("/fonts/2025/Acumin-variable-concept.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
  /* Ocultar completamente el header CST solo en esta página */
  header.cst-header {
    display: none !important;
  }
body {
  font-family: 'Acumin Variable Concept', sans-serif;
  background: #007b3e url('/assets/login-backgroud1.jpg') no-repeat center top;
  background-size: cover; /* la hace cubrir todo el viewport */
  color: #333;
}
/* Overlay desenfocado */
body::before {
  content: "";
  position: fixed;  /* se queda fijo en la pantalla */
  top: 0; left: 0; right: 0; bottom: 0;
  background: inherit;            /* usa el mismo fondo */
  background-attachment: fixed;   /* fija la imagen */
  filter: blur(2px);              /* intensidad del blur */
  transform: scale(1.05);         /* evita bordes raros al blurear */
  z-index: -1;                    /* queda detrás del contenido */
}
h3.modal-title.center {
  font-family: 'Acumin Variable Concept', sans-serif;
  font-weight: 600; /* negrita */
}
.header {
  width: 100%;
  background-color: #007b3e;
  margin-bottom: 2rem;
  /* margin-top: -6.6%;  <-- quitar esto */
  padding-bottom: 2rem; 
  position: relative;                   /* por si hay elementos posicionados */
  z-index: 1;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;                      /* horizontal */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.logo img {
  padding-top: 5%;
  padding-bottom: 2%;
  height: 100px;
  width: auto;
  }
.header-text {
font-size: 18px;
line-height: 1.4;
}
.header-text a {
color: #80c41c;
text-decoration: underline;
}

/* Darle sombra y border a los contenedores */
#DatosPersonales,
#DatosEmpresa,
#DatosEmpresaMas,
#CategoriasEmpresa,
#InputsCategorias,
#CaracteristicasEmpresa {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* sombra suave */
  border-radius: 12px; /* esquinas suaves */
  background: #fff; /* fondo blanco */
}

/* Botón verde centrado */
.btn-next {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 60%;
  height: 40px;                 /* alto cómodo */
  border: 0;
  border-radius: 12px;          /* esquinas redondeadas */
  background: #007b3e;          /* verde CST */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 43px;            /* centra el texto verticalmente */
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
  transition: transform 0.2s ease, filter 0.15s ease;
}

.btn-next:hover {
  filter: brightness(.95);
  transform: scale(1.05); /* agrandar en hover */
}

.btn-next:active {
  transform: scale(1.02); /* efecto de presión */
}


.btn_green {
  background: #008c46;        /* verde CST */
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, filter 0.15s ease;
}

.btn_green:hover {
  filter: brightness(0.95);
  transform: scale(1.05);
}

.btn_green:active {
  transform: scale(1.02);
}

.btn_red {
  background: #c30000;        /* verde CST */
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, filter 0.15s ease;
}

.btn_red:hover {
  filter: brightness(0.95);
  transform: scale(1.05);
}

.btn_red:active {
  transform: scale(1.02);
}

.back-link{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;       /* centra verticalmente icono + texto */
  gap: 8px;
  height: 28px;
  font-size: 16px;
  line-height: 28px;         /* centra el texto dentro de la caja */
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  transform-origin: left center;
  transition: transform 90ms cubic-bezier(.2,.8,.2,1), color 90ms linear;
  will-change: transform;
}

/* ICONO (font-icon con ::before) */
.back-link i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;               /* caja cuadrada para centrar el glifo */
  height: 22px;
  font-size: 22px;           /* tamaño del glifo */
  line-height: 1;            /* evita que “salte” por el baseline */
}
.back-link i::before{ line-height: 1; }  /* por si el ícono usa ::before */

/* Hover / Active (opcional) */
.back-link:hover,
.back-link:focus-visible{
  color:#007b3e;
  transform: translateY(-1px) scale(1.06);
}
.back-link:active{
  transform: scale(1.02);
  transition-duration: 60ms;
}

  