.section{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .loginform{
    width: 50%;
}

.section button, .section .button{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.section .form{
    width: 80%;
    display: flex;
    flex-direction: column;
}

.dots{
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap:40px;
    justify-content: space-between;
    position: relative;
    width: fit-content;
}

.dots>div{
    width: 16px;
    height: 16px;
    background-color: transparent;
    border:2px solid white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dots>div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%; /* Extiende hacia el punto anterior */
    width: calc(100% + 36px); /* Añade el espacio exacto entre puntos */
    height: 4px;
    background-color: white;
    z-index: -1;
    transform: translateY(-50%);
}

.dots>div.completed{
    background-color: var(--principal-lightgreen);
    border-color: var(--principal-lightgreen);
    color: white;
}

.dots>div.completed::after {
    content: "✔";
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
}

.dots>div.completed::before {
    background-color: var(--principal-lightgreen);
}

.dots>div.active{
    background-color: white;
    border-color: var(--principal-lightgreen);
}

/* Elimina la línea del primer punto */
.dots>div:last-child::before {
    content: none;
}

.section p{
    font-size: var(--font-size-20);
}

@media (max-width: 979px) {
    .section .loginform{
        width: 100%;
    }

    .section .loginform .columns{
        flex-direction: row;
    }
}