.bx-authform-input-container input[type="text"], .bx-authform-input-container input[type="password"] {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: none;
    height: 45px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.bx-authform-label-container {
    display: block;
    color: #6C6868;
    width: 25%;
}

.bx-authform-input-container {
    width: 75%;
}

.bx-authform-formgroup-container {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.bx-authform > form {
    width: 60%;
}

.bx-authform {
    margin: 60px 0;
}

.checkbox {
    position: relative;
}

.checkbox input {
    opacity: 0;
    position: absolute;
}

.check-box {
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid #DADADA;
    box-sizing: border-box;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
    margin: -2px 10px -2px 0;
    color: #221F1C;
    left: 0;
    top: 0;
    z-index: 1;
}


@-moz-keyframes dothabottomcheck {
    0% {
        height: 0;
    }
    100% {
        height: 6px;
    }
}
@-webkit-keyframes dothabottomcheck {
    0% {
        height: 0;
    }
    100% {
        height: 6px;
    }
}
@keyframes dothabottomcheck {
    0% {
        height: 0;
    }
    100% {
        height: 6px;
    }
}
@keyframes dothatopcheck {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: 9px;
    }
}
@-webkit-keyframes dothatopcheck {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: 9px;
    }
}
@-moz-keyframes dothatopcheck {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: 9px;
    }
}


.check-box:before, .check-box:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: 2px;
    background-color: #326276;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: ' ';
    -webkit-transition: opacity ease .5;
    -moz-transition: opacity ease .5;
    transition: opacity ease .5;
}
.check-box:before{
    top: 10px;
    left: 5px;
    /*box-shadow: 0 0 0 5px #fff;*/
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.check-box:after{
    top: 6px;
    left: 1px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#USER_REMEMBER:checked ~ .check-box {
    /*border-color: #151515;*/
}
#USER_REMEMBER:checked ~ .check-box:after {
    height: 5px;
    -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
    animation: dothabottomcheck 0.2s ease 0s forwards;
}
#USER_REMEMBER:checked ~ .check-box:before {
    height: 10px;
    -moz-animation: dothatopcheck 0.4s ease 0s forwards;
    -o-animation: dothatopcheck 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
    animation: dothatopcheck 0.4s ease 0s forwards;
}


.bxe-light {
    margin: 25px 0;
}

@media (max-width: 767px) {
    .bx-authform > form {
        width: 100%;
    }
    input[type="submit"] {
        width: 100%;
    }
}