body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff; /* Fondo blanco */
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color:#ffffff;
    z-index: -1;
  }
  
  /* Media luna decorativa */
  .media-luna {
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to bottom, #3b82f6, white);
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    z-index: -1;
  }
  
  /* Contenedor principal más estrecho */
  .container-verificador {
    max-width: 450px; /* ahora menos ancho */
    margin-top: 120px;
    position: relative;
    z-index: 1;
  }
  
  /* Titulo central */
  .titulo-verificador {
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
  }
  
  /* Contenedor flotante */
  .flotante {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* Barra de progreso con animación más fluida */
  .progress-container {
    height: 15px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
  }
  
  .progress-bar {
    height: 100%;
    width: 0%;
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.5s ease; /* Animación más fluida */
  }
  
  /* Botón mostrar contraseña */
  .toggle-password {
    cursor: pointer;
  }
  
  /* Menú inferior sugerencia */
  .menu-sugerencia {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-sugerencia img {
    margin-right: 5px;
  }
  
  /* Footer fijo */
  .footer {
    background-color: #f8f9fa;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
  }
  