.passwordReset{
    height: 600px;
}

.cardImage{
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.cardImageContainer{
    align-items: center;
    border: 2px #EFEEF1 solid;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    height: 50px;
    width: 50px;
}

.imagePassword{
    height: 40px;
    width: 40px;
}

.btnBackContainer{
    display: flex;
    position: absolute;
    left: 2rem;

}

.btnBack {
    align-items: center;
    background-color: #ffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    height: 2em;
    justify-content: center;
    letter-spacing: 1px;
    padding: 0;
    transition: all 0.2s linear;
    width: 100%;
}

.btnBack > svg {
    margin-right: 7px;
    margin-left: 4px;
    padding-left: 0.4rem;
    transition: all 0.4s ease-in;
}


@media(min-width: 1px){
    .btnPassword{
        background-color: var(--TES-primary-color);
        display:flex;
        font-size: 13px;
    }

    .btnPassword:hover{
        background-color: var(--TES-secondary-color);
    }
}


@media(min-width: 768px){
    .col-md-5{
        flex: 0 0 58.666667%;
        max-width: 60.666667%;
    }
}



@media(min-width: 1024px){

    .col-md-5{
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .btnBack:hover > svg {
        transform: translateX(-5px);
    }

    .btnBack:hover {
        box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.20);
        transform: translateY(-2px);
    }

}