html {
    width: 100%;
}
body {
    background: #ffffff url('/assets/image/login-1.jpg') no-repeat fixed center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: Verdana, Sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}
h1 {
    color: #fff;
    font-size: 50px;
    margin: 15px;
    font-weight: bold;
    font-family: Helvetica;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
}

input[type='text'],
input[type='password'] {
    display: inline-block;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.3);
    outline: 0;
    margin: 5px 0px;
    padding: 5px 30px 5px 7px;
    width: 292px;
    font-family: Verdana, sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    box-sizing: border-box;
}

#outer_container {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
#inner_container {
    display: table;
    width: 100%;
    height: 100%;
}
#centred {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.wrap-login {
    background-color: rgba(255,255,255,0.6);
    padding: 50px 0px;
    border-top: 1px solid rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    -webkit-box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 20%);
    width: 25%;
    display: inline-block;
}
#username, #password {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
}
#code {
    background: rgba(93, 92, 92, 0.1);
    display: none;
}
.login button {
    width: 243px;
    margin-top: 6px;
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.login button:active {
    transform: scale(0.95);
}

.login button:focus {
    outline: none;
}

p.combinedFormErrors {
    height: 22px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    color: #cc0033;
}
