.login-column-password {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    background-color: #ffffff;
    overflow-y: auto;
}
.login-column-password .logo_svg {
    width: 320px;
    height: auto;
}
.msj-contraseña{
    display: flex;
    padding: 1rem;
    background: gray;
    color: white;
    margin: 5px;
    border-radius: 25px;
}

/* Capa oscura de fondo */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;          /* centrado total */
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 9999;
  }

  /* Caja azul flotante */
  #floatBox-red {
    background: #FF2626;
    color: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
    text-align: center;
    position: relative;
    animation: fade .35s ease;
  }
  #floatBox-blue {
    background: #0066ff;
    color: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
    text-align: center;
    position: relative;
    animation: fade .35s ease;
  }

  /* Botón de cierre */
  .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .25s;
  }
  .close-btn:hover {background: rgba(255,255,255,.25);}

  /* Texto editable */
  #floatText {
    padding: 40px 25px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    word-break: break-word;
  }

/* Responsive */
@keyframes fade {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
  }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .login-column-password {
        padding: 1rem;
        justify-content: flex-start;
    }

    .login-form {
        box-shadow: none;
        padding: 1rem;
    }

    .login-column-password {
        overflow-y: visible;
    }
}