/*
LOGIN STYLE
*/
.login {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    background: url(../_img/black-paper.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.login_box {
    position: relative;
    width: 450px;
    max-width: 90%;
    margin: auto;
}

.login_box_logo {
    width: 375px;
    max-width: 100%;
    z-index: 99;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

.login_box_content {
    padding: 30px;
    background: #fff;
}

.login_box_content_re {
    padding: 10px 0 20px 0;
    display: flex;
    justify-content: center;
}

.login_box_content_message {
    text-align: center;
    padding: 15px;
    background: #0077B5;
    color: #fff;
    font-size: 0.8em;
    font-weight: 300;
    margin-bottom: 20px;
}

.login_box_content_pass {
    display: block;
    text-align: center;
    font-size: 0.7em;
    text-transform: uppercase;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 20px;
}

.login_box_content_pass:hover {
    color: #555;
}

.login_box_footer {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #eee;
    text-decoration: none;
}

.login_box_footer a {
    color: #fff;
}

.login_btn{
    margin-top: 10px;
    background-color: #f7542b;
    border: none;
    color: #fff;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 1em 3em;
    font-size: 0.857em;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all ease .3s;
    background-position: left bottom !important;
}

.login_btn:hover{
    background: linear-gradient(to right, #1d1d1d 50%,#f7542b 50%) no-repeat scroll right bottom / 210% 100% rgba(0,0,0,0);
    outline: 0;
}

.login_link{
    color: #1D1D1D;
    font-size: 0.875em;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 500;
}

.login_link:hover{
    text-decoration: underline;
}

.termos a{
    color:#f7542b;
    text-decoration: none;
}

.termos a:hover{
    text-decoration: underline;
}

.register{
    color: #fff;
    text-align: center;
    font-size: 0.875em;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 500;
}

.register a{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.register a:hover{
    text-decoration: underline;
}

.powered{
    color: #fff;
    text-align: center;
    font-size: .875em;
    margin-top: 40px;
}

.powered i{
    color: #F45563;
}

.powered a{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.powered a:hover{
    text-decoration: underline;
}