.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.password-strength {
    width: 100%;
    height: 5px;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-top: 10px;
    display: none; /* Oculta la barra por defecto */
}

.progress-bar {
    width: 0;
    height: 100%;
    border-radius: 5px;
    transition: width 0.2s ease-in-out;
}

#next2
{
    background-color: #3B77D1;
    color: white;
}

/*Hovers botones*/

#next2:hover
{
    color: white;
    background-color: #2468cf;
}

@keyframes dots {
    0% { content: ""; }
    33% { content: "."; }
    66% { content: ".."; }
    100% { content: "..."; }
}

.dots::after {
    content: "...";
    display: inline-block;
    animation: dots 1s infinite steps(3);
}

.succes h1, .succes h2
{
    font-family: "Montserrat" !important;
    font-size: 50px  !important;
    text-align: center  !important;
    color: white !important;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.toggle-password:hover {
    color: var(--azulPrimario);
}