.bgWhite{
    background-color: white;
}
.contentResetPass{
    width: 100%;
    padding: 120px 0px 120px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modalPassword{
    border-radius: 15px;
    border: 1px solid rgba(224, 224, 224, 0.7);
    width: 440px;
    padding: 32px 20px 32px 20px;
    box-sizing: border-box;
}
.textModalPassword{
    color: rgb(122, 122, 122);
    font-size: 16px;
    font-weight: 550;
}
.textModalPassword a{
    color: rgb(247, 85, 93);
    text-decoration: none;
    cursor: pointer;
}
.inputModalPass{
    margin-top: 28px;
    width: 100%;
}
.titleInput{
    font-size: 16px;
    color: rgb(122, 122, 122);
    font-weight: 550;
}
.titleInput span{
    color: rgb(201, 0, 0);
}
.inputModalPass input{
    width: 100%;
    height: 48px;
    border: 1px solid rgba(224, 224, 224, 0.7);
    border-radius: 10px;
    margin-top: 8px;
    background-color: transparent;
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 18px;
}
.inputModalPass input:focus{
    outline: none;
}
.btnModalPass{
    margin-top: 20px;
    margin-bottom: 8px;
    width: 100%;
}
.btnModalPass button{
    width: 100%;
    height: 48px;
    background-color: rgb(247, 85, 93);
    border: 0px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnModalPass button:hover{
    background-color: rgb(247, 85, 93, 0.8);
}
.btnModalPass button:disabled{
    opacity: 0.4;
    cursor: not-allowed;
}
.bPink input{
    border: 1px solid rgb(247, 85, 93);
}

.alertF{
    margin-left: 8px;
    margin-top: 4px;
    color: red;
    font-size: 14px;
    display: none;
}

.contentNewPass{
    display: none;
    padding: 120px 0px 120px 0px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.alertNewPass{
    text-align: center;
    width: 80%;
    font-size: 38px;
    font-weight: 600;
    display: none;
    flex-direction: column;
    align-items: center;
}
.alertNewPass a{
    text-decoration: none;
}
.alertNewPass button{
    margin-top: 8px;
    width: 140px;
    height: 38px;
    background-color: rgb(247, 85, 93);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 0px;
    cursor: pointer;
}

@media screen and (max-width: 980px){
    .modalPassword{
        width: 620px;
    }
    .textModalPassword{
        font-size: 22px;
    }
    .inputModalPass{
        margin-top: 44px;
    }
    .titleInput{
        font-size: 22px;
    }
    .inputModalPass input{
        height: 64px;
        font-size: 26px;
    }
    .btnModalPass button{
        height: 64px;
        font-size: 26px;
    }

    .alertF{
        font-size: 20px;
    }
}