.unchecked{
    border: 1px dotted red;
    background-color: #fbdede;
  }
  #formPrueba{
    position: relative;
  }
  #progressAvanc{
    width: 100%;
    height: 0.4em;
    top: 0;
    position: absolute;
    left: 0px;
    border-radius: 0px;
  }

  /*--------------- PASSWORD -----------------*/

  .password-wrapper {
    position: relative;
  }
  .password-wrapper input {
    padding-right: 80px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #000;
  }
  .icon-group {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
  }
  .icon-group i {
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 30px;
  }
  .requirement {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    font-size: .95rem;
  }
  .requirement.valid {
    color: #198754; /* verde Bootstrap */
  }
  .requirement.invalid {
    color: #dc3545; /* rojo Bootstrap */
  }
  .requirement i {
    font-size: 1rem;
  }

  /*--------------- REGISTRO CORRECTO -----------------*/

      /* Estilos del overlay full-screen */
      .success-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(40,167,69,0.95); /* verde éxito con algo de transparencia */        
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        color: #fff;
        text-align: center;
        padding: 1rem;
        box-sizing: border-box;
        display: none;
      }
      .success-overlay h4{
        font-size: 1.1em;
        font-weight: normal;         
      }

      /* Mensaje principal */
      .success-message {
        margin-top: 1rem;
        font-size: 2rem;
      }

      /* Botón */
      .success-button {
        margin-top: 2rem;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border: none;
        background: #fff;
        color: #28a745;
        border-radius: 0.25rem;
        cursor: pointer;
        transition: background .2s;
      }
      .success-button:hover {
        background: #e9ecef;
      }

      /* Animación del círculo */
      .checkmark-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 6px solid #fff;
        position: relative;
        opacity: 0;
        transform: scale(0);
        /* IMPORTANT: forwards para que quede al final */
        animation: circle-pop 0.5s ease-out forwards;
      }

      /* Animación de la palomita */
      .checkmark {
        position: absolute;
        /* centrar la palomita dentro del círculo */
        left: calc(50% - 10px);
        top: calc(50% - 20px);
        width: 0;
        height: 0;
        border-right: 6px solid #fff;
        border-bottom: 6px solid #fff;
        transform: rotate(45deg);
        /* comienza tras el círculo y se queda al final (forwards) */
        animation: check-draw 0.5s ease-out 0.5s forwards;
      }
      .ayuda-soporte{
         margin-top: 20px;
      }
      .ayuda-soporte a{
        color: #d7effb;
        text-decoration: underline;
      }

      /* Keyframes */
      @keyframes circle-pop {
        0%   { transform: scale(0); opacity: 0; }
        60%  { transform: scale(1.2); opacity: 1; }
        100% { transform: scale(1); opacity: 1; }
      }

      @keyframes check-draw {
        0%   { width: 0; height: 0; }
        50%  { width: 20px; height: 0; }
        100% { width: 20px; height: 40px; }
      }  


  @media only screen and (max-width: 767px) {
      #section-prom{
        display: none !important;
      }
      .tabl-details{
        max-width: none;
        margin: 0px;
        padding: 0px;
      }
      .tabl-details .card{
         max-width: none;
      }
  }  
