.contGeneralLogin {
    display: flex;
    flex-direction: row;
    height: 600px;
    justify-content: center;
    width: 100%;
}

.loginResponsive{
    display: flex;
    flex-direction: column;
}

.loginGeneralForm .form-control{
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.is-valid{
    background-color: transparent;
}

.is-invalid{
    background-color: transparent;
}

.passwordField{
    display: flex;
    align-items: center;
}

.loginGeneralForm .form-group{
    width: 100%;
}
.eyeCheckbox{
    padding: 0 26px 8px 2px;
}
.eyeContainer {
    align-items: center;
    --color: #a5a5b0;
    cursor: pointer;
    display: flex;
    fill: var(--color);
    font-size: var(--size);
    justify-content: center;
    position: relative;
    --size: 18px;
    user-select: none;
}

.eyeContainer .eye {
    animation: keyframes-fill .5s;
    position: absolute;
}

.eyeContainer .eyeSlash {
    animation: keyframes-fill .5s;
    display: none;
    position: absolute;
}
.eyeContainer input:checked ~ .eye {
    display: none;
}

.eyeContainer input:checked ~ .eyeSlash {
    display: block;
}
.eyeContainer input {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0;
}
@keyframes keyframes-fill {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }
}

.buttonsContainer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.signInBtn {
    background: #01A0DD;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    cursor: pointer;
    height: 44px;
    outline: none;
    width: 100%;
}

.signInEml {
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 0;
    color: #242424;
    cursor: pointer;
    display: flex;
    gap: 10px;
    height: 50px;
    justify-content: center;
    outline: none;
    width: 100%;
}


.createAccount p{
    align-items: center;
    color: #aaa;
    display: flex;
    justify-content: center;
    text-align: center;
}


/* Responsividad */

@media(min-width: 1px){

    .buttonsContainer{
        font-size: 11px;
    }

    .imgIcon{
        width: 16px;
        height: 16px;
    }

    .createAccount p{
        flex-direction: column;
        font-size: 12px;
    }

    .loginResponsive{
        max-width: 100%;
    }
}

@media(min-width: 360px){

    .createAccount p{
        flex-direction: row;
        gap: 9px;
    }

    .buttonsContainer{
        font-size: 12px;
    }

    .imgIcon{
        width: 17px;
        height: 17px;
    }

}

@media(min-width: 445px){
    .loginResponsive{
        flex: 0 0 88.666667%;
    }
}


@media(min-width: 500px){

    .loginResponsive{
        flex: 0 0 80.666667%;
    }

}

@media(min-width: 768px){

    .loginResponsive{
    flex: 0 0 56.666667%
    }

}

@media(min-width: 992px){

    .loginResponsive{
        flex: 0 0 42.666667%;
    }

}

@media(min-width: 1024px){
    .loginResponsive{
        flex: 0 0 42.666667%;
    }

}

