@charset "UTF-8";
html{width:100%;height:100%;}
.login_div{
    width:100%;height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login_form{
    width:25%;
    padding:30px;
    background: rgba(255,255,255,.3);
    border-top-left-radius: 10px;-webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;-o-border-top-left-radius: 10px;
    -ms-border-top-left-radius: 10px;
    border-top-right-radius: 10px;-webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;-o-border-top-right-radius: 10px;
    -ms-border-top-right-radius: 10px;
}
.login_logo{
    font-size: 1.5rem;
}
.login_table{
    margin-top:20px;
}
.login_table input{
    width: 100%;
    padding:5px 5px 5px 30px;
    background:none;
    border:none;
    border-bottom:#eee solid 1px;
}
.login_table i{
    left:5px;top:5px;
    width:14px;height:14px;
    background-image: url(../../images/backend/glyphicons_halflings-white.svg);
}
.login_table i.username{
    background-position: -168px 0;
}
.login_table i.password{
    background-position: -287px -24px;
}
.login_btns{
    display: block;
    cursor: pointer;
    width: 25%;
    padding: 10px;
    background: #e6acbd;
    border-bottom-left-radius: 10px;-webkit-border-bottom-left-radius: 10px;
    -moz-border-bottom-left-radius: 10px;-o-border-bottom-left-radius: 10px;
    -ms-border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;-webkit-borderbottom-right-radius: 10px;
    -moz-border-bottom-right-radius: 10px;-o-border-bottom-right-radius: 10px;
    -ms-border-bottom-right-radius: 10px;
    font-size: 1.3rem;
    text-align: center;
}

/* pad & phone */
@media screen and (max-width:850px){
    .login_form,.login_btns{
        width: 50%;
    }
}
@media screen and (max-width:500px){
    .login_form,.login_btns{
        width: 90%;
    }
}