.home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
  }
  
  .home-container h2 {
    margin-bottom: 20px;
  }
  
  .home-container button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .home-container button:hover {
    background-color: #45a049;
  }
  
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D9D9D980;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
  }
  
  .modal h3 {
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
  }
  
  .banks-scroll-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    padding: 10px 0;
    flex-grow: 1;
  }
  
  .modal ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
  }
  
  .modal ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    min-width: 150px;
    text-align: center;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .modal ul li:hover {
    background-color: #ddd;
  }
  
  .modal footer {
    width: 100%;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: auto;
  }
  
  .modal footer button {
    padding: 10px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .modal footer button:hover {
    background-color: #d32f2f;
  }
  :root{
  --azul-profundo:#070130;
  --gris-texto:#666;
  --naranja-accion:#F55105;
  --verde-marca:#349334;
  --blanco:#fff;
  --negro:#222;
  --lavanda:#f3edf7;
}

.login-page{
  margin:0;
  font-family:'Poppins',sans-serif;
  min-height:100vh;
}

.bg-feria{
  position:relative;
  background: var(--bg-img) center/cover no-repeat fixed;
}
.bg-feria::before{
  content: '';
  position: absolute; inset: 0;
  background: var(--bg-img) center/cover no-repeat fixed;
  filter: grayscale(100%) brightness(0.95);
  z-index: 0;
}

.login-layout{
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  padding: 40px 32px;

  max-width: 1240px;
  margin: 0 auto;
  gap: 56px;
  justify-content: space-between;
}

@media (min-width: 1600px){
  .login-layout{
    max-width: 1300px;
    gap: 52px;
  }
}

.left-pane{
  flex:1;
  max-width: 620px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:28px;
}

.brand-top{
  display:flex; align-items:flex-end; gap:10px;
}
.brand-top img{ height:44px; }
.tag{ color:#bbb; letter-spacing:.18em; text-transform:uppercase; font-size:12px; }

.headline{
  font-size:48px;
  line-height:1.05;
  font-weight:800;
  margin:0;
}
.headline .accent{ color:#ff8a3d; }

.logos-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(200px, 260px));
  gap:18px;
  width:min(560px, 100%);
}
.logos-grid img{
  width: 100%;
  height: 90px;
  object-fit: contain;
  background:#fff;
  border-radius:10px;
  padding:10px 14px;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.right-pane{
  width:1460px;
  max-width:95vw;
  display:flex; align-items:center; justify-content:center;
}

.login-card{
  background: var(--lavanda);
  border-radius:18px;
  padding:28px 26px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  border:1px solid rgba(0,0,0,.08);
  width: 60%!important;
  height: 450px!important;
}

.card-logo{
  display:flex; align-items:flex-end; gap:10px; margin-bottom:6px;
}
.brand-top img,
.card-logo img{
  height: 44px;
  width: auto;
  object-fit: contain;
}

.welcome{
  margin:6px 0 18px 0;
  font-size:18px; font-weight:700; color:#000;
  text-align:center;
}

.form{ display:flex; flex-direction:column; gap:10px; }

.label{
  font-size:13px; color:#111; font-weight:600; margin-top:6px;
}

.input{
  width:100%;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
  font-size:14px; color:#222;
}
.input:focus{
  outline:none; border-color: var(--naranja-accion);
  box-shadow: 0 0 0 3px rgba(245,81,5,.12);
}

.select-wrap{ position:relative; }
.select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  width:100%; padding:12px 42px 12px 16px;
  border-radius:999px; border:1px solid #ddd; background:#fff;
  font-size:14px; color:#222;
}
.select:focus{
  outline:none; border-color:var(--naranja-accion);
  box-shadow:0 0 0 3px rgba(245,81,5,.12);
}
.chevron{
  position:absolute; right:14px; top:50%; transform:translateY(-50%);
  pointer-events:none; color:#999; font-size:16px;
}

.btn-primary{
  margin-top:14px;
  width:100%; padding:12px 16px;
  background: #000000;
  color:#fff; font-weight:700; font-size:15px;
  border:none; border-radius:999px; cursor:pointer;
  transition: filter .2s ease, transform .02s ease;
}
.btn-primary:hover{ filter:brightness(115%); }
.btn-primary:active{ transform:translateY(1px); }

@media (max-width: 1100px){
  .headline{ font-size:40px; }
  .logos-grid{ grid-template-columns: repeat(2, minmax(180px, 1fr)); }
}
@media (max-width: 900px){
  .login-layout{ flex-direction:column; padding:24px 18px; max-width:820px; }
  .right-pane{ width:100%; order:-1; }
  .left-pane{ align-items:center; text-align:center; max-width:none; }
  .logos-grid{ grid-template-columns: repeat(2, minmax(160px, 1fr)); }
}
@media (max-width: 500px){
  .headline{ font-size:32px; }
  .login-card{ padding:22px 18px; }
}

.brand-top .tag{
  color:#bbb;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  margin-left: 12px;
}

.brand-word{
  display:inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 45.19px;
  line-height: 1;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.bg-feria::after{
  content: '';
  position: absolute; inset: 0;
  background: rgba(170,170,170,0.55);
  z-index: 0;
}

.left-pane .headline{
  color: #000000;
}

.left-pane .headline .accent{
  color: #F5821F;
}
.login-register-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #1d3557;
}

.login-register-link a {
  font-weight: 600;
  color: #0d7fe8;
}

.logo-main {
  width: 200px;
  height: auto;
}

.mantra-img {
  width: 500px;
  height: auto;
}

.logo-card {
  width: 150px;
  display: block;
  margin: 0 auto;
}

.logos-grid img:nth-child(3) {
  background: #7dc090
}

.logos-grid img:nth-child(4) {
  background: #fddcdc
}.register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fb 0%, #eef1f8 100%);
  padding: 2rem;
  color: #1f2933;
}

.register-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(31, 41, 51, 0.12);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.register-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #0b1f33;
}

.register-lead {
  margin: 0;
  color: #52606d;
  font-size: 0.95rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.register-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.register-input {
  border: 1px solid #d0d7e2;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.register-input:focus {
  outline: none;
  border-color: #0d7fe8;
  box-shadow: 0 0 0 3px rgba(13, 127, 232, 0.12);
}

.register-error {
  background: #fde8e8;
  border-radius: 10px;
  padding: 0.75rem;
  color: #c81e1e;
  font-size: 0.85rem;
}

.register-submit {
  margin-top: 0.5rem;
  border: none;
  border-radius: 10px;
  background: #0d7fe8;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.register-submit:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}

.register-submit:not(:disabled):hover {
  background: #0c6dd0;
  transform: translateY(-1px);
}

.register-footer {
  font-size: 0.9rem;
  color: #52606d;
  text-align: center;
}

.register-footer a {
  color: #0d7fe8;
  font-weight: 600;
}

@media (max-width: 640px) {
  .register-card {
    padding: 2rem 1.5rem;
  }
}
