.boxForm{
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
}
.wrapForm{
    max-width: 370px;
    margin: 0 auto;
}
.formLogin .row{
    display: flex;
    flex-wrap: wrap;
}
.formLogin .boxForm{
    height: 100%;
}
.titleLine{
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333333;
}
.titleLine h2{
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
}
.contentForm label{
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-weight: 800;
}
.contentForm label span{
    color: #d01f6f;
}
.contentForm input{
    width: 100%;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0 10px;
}
.contentForm .checkbox{
    display: flex;
    align-content: center;
    justify-content: space-between;
}
.contentForm .checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.contentForm .checkbox label{
    display: block;
    font-weight: 400;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.contentForm .checkbox label .checkmark{
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.4);
}
.contentForm .checkbox label .checkmark::after{
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #f0c24a;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.contentForm .checkbox label input:checked ~ .checkmark:after{
    display: block;
}
.contentForm .checkbox a{
    color: #f0c24a;
    font-size: 16px;
    line-height: 24px;
}
.contentForm button{
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 20px;
    background-color: #f0c24a;
    border: none;
    display: block;
    width: 100%;
    margin-top: 20px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 3px;
}
.contentForm button:hover{
    background-color: #333333;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media all and (max-width: 991px){
    .formLogin .row > div{
        margin-bottom: 20px;
    }
}