/* DeafHub Team | File: account_login.css */

.login_button {
    display: flex;
    justify-content: center;
    margin: 10px 0px 10px 0px;
}
.login_button > button {
    font-family: inherit;
    font-size: 16px;
    background-color: #D60812;
    color: #fff;
    width: 280px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
}
.login_button > button:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.4) inset;
}




.login_checkbox {
    font-size: 14px;
    color: #B3B3B3;
    text-align: center;
    margin: 20px 0px 15px 0px;
}
.login_checkbox > input {
    display: none;
}
.login_checkbox > label {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    height: 18px;
    line-height: 19px;
}
input:checked + label:before, 
input:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border: none;
    background-color: #B3B3B3;
    border-radius: 10px;
    transition: background-color 0.1s ease;
}
input:checked + label:after, 
input:not(:checked) + label:after {
    font-family: 'FontAwesome';
    font-size: 14px;
    content: '\f00c';
    position: absolute;
    color: #fff;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    transition: opacity 0.1s ease;
}
input:checked + label:before { 
    background-color: #D60812;
}
input:not(:checked) + label:after {
    opacity: 0;
}
input:checked + label:after  {
    opacity: 1;
}


/* miss */
@media only screen and (max-width: 576px) {
    .login_button > button {
        width: 200px;
        height: 48px;
    }
}


.login_link_register {
    font-size: 14px;
    color: #929292;
    text-align: center;
}

/*.login_recaptcha {
    font-size: 14px;
    color: #737373;
    text-align: center;
    margin: 25px 0px 10px 0px;
}
.login_recaptcha > a {
    color: #0085FF;
    text-decoration: none;
}
.login_recaptcha > a:hover {
    text-decoration: underline;
}*/