.second-title {
    font-size: 15px;
    color: grey;
    font-weight: 500;
    font-family: Poppins-Regular;
}

.formJs2 {
    display: block;
}

.formJs2.active {
    display: none;
}

.fromJs1.active {
    display: none;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loader1,
.loader2 {
    height: 35px;
    width: 35px;
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-right: 3px solid #ff4356;
    border-radius: 100px;
    animation: spin 0.5s linear infinite;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

button:hover .loader1,
button:hover .loader2 {
    border-right: 3px solid #333333;
}

.loader1.active,
.loader2.active {
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg)
    }

}

.container-login100{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}