@charset "utf-8";
body{

    background: #eee;
}
#loginbox{
    width: 505px;
    height: 350px;
    padding: 45px;
    margin: 0 auto;
    border: 1px solid #eee;
    background: #FFF;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);

}
#loginbox h1,
#loginbox h1 span {
    margin-bottom: 15px;
    color: #666;
    font-size: 32px;
    font-family: Arial, Helvetica, "sans-serif"
}
#loginbox h1 span{
    font-weight: normal;
}
#loginbox h2{
    margin-bottom: 20px;
    font-size: 20px;
}
#loginbox input[type=email],
#loginbox input[type=password]{
    border: none;
    border-bottom: 1px solid #3367D6;
    width: 100%;
    padding: 8px;
    line-height: 1;
    margin-bottom: 10px;
    outline: none;
}
#loginbox input[type=submit]{
    border: none;
    outline: none;
    width: 100%;
    line-height: 1;
    margin-bottom: 10px;
    background: #03a9f4;
    color: #FFF;
    font-weight: bold;
    padding: 12px;
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer
}
#loginbox p{
    font-size: 13px;
    margin-bottom: 20px;
}
.login_error li{
    font-size: 13px;
    color: red;
}
#loginbox.login_error input[type=email],
#loginbox.login_error input[type=password]{
    border-bottom: 1px solid red;
    color: red;
}
#back_login{
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 15px;
}
@media only screen and (max-width:600px){
#loginbox{
    width: 90%;
    height: 405px;
}
}