body {
    background: #fbfbfb;
    font-family: arial;
    margin: 0;
    padding: 0;
}

#contain {
    position: absolute;
    max-width: 400px;
    width: 100%;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#title_login {
    margin: 0 15px 15px 15px;
    color: #2f4050;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

#box_login {
    background: #fff;
    margin: 10px 15px 0 15px;
    padding: 10px 20px;
    border: 2px solid #2f4050;
    border-radius: 4px;
}

#box_login .box_space {
    display: table;
    width: 100%;
    margin: 15px 0 15px 0;
}

#box_login .box_space a {
    float: right;
    color: #2f4050;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

#box_login .box_space span {
    color: #2f4050;
    font-size: 14px;
    font-weight: bold;
}

#box_login .input-group-addon {
    display: table-cell;
    padding: 6px 4px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0px 0px 4px;
}

#box_login .form-control {
    display: table-cell;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0px 4px 4px 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#box_login .form-login {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    background: #f8154e;
    border: 1px solid #f8154e;
    border-radius: 4px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    cursor: pointer;
}
    #box_login .form-login:hover {
        background: #e7a300;
    }
#box_login .message {
    background: rgba(64,67,94,0.1);
    padding: 8px;
    color: #2f4050;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 20px;
}
    #box_login .message p {
        margin: 5px 0;
    }
