* {
    
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body.login-page {
    
    background-color: #333;
}

.wrapper {
    
    margin: 0 auto;
}

.wrapper.offset {
    
    margin-top: 30px;
    margin-bottom: 30px;
}

.ultra-ttl {
    
    width: auto;
    height: 50px;
    line-height: 50px;
    font-size: 36px;
    letter-spacing: -2px;
    color: white;
    text-shadow: 1px 1px 1px #000;
}

.copy-r {
    
    display: block;
    text-align: center;
    color: white;
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    margin: 5px 0;
}
.login-box {
    
    box-shadow: 0px 0px 4px #111;
    background-color: #555;
    color: white;
    width: 310px;
    height: 265px;
    border-radius: 3px;
    padding: 4px;
}

.err-box {
    
    width: 305px;
    padding: 5px;
    font-size: 12px;
    font-weight: normal;
    color: #530000;
    border: 1px solid #530000;
    background-color: #FF8E8E;
    margin: 5px auto;
    border-radius: 2px;
    text-align: center;
}

.login-box .login-box-inner {
    
    background-color: #444;
    border: 1px solid #000;
    height: 99.5%;
}

.login-header {
    
    background-color: #222;
    background-image: linear-gradient(to bottom, #333, #222);
    height: 50px;
    padding: 0px 0px 0px 10px;
    line-height: 50px;
    border-top: 1px solid #555;
    border-bottom: 1px solid #000;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    vertical-align: baseline;
}

.login-header h1 {
    
    font-size: 14px;
}

.login-header .tiny-txt {
    
    font-size: 11px;
    font-weight: normal;
    color: #bbb;
    margin-left: 4px;
}

.login-body {
    
    padding: 15px 10px;
}

.login-body label {
    
    font-size: 12px;
    line-height: 30px;
    color: white;
    font-weight: bold;
    height: 30px;
    box-sizing: border-box;
    cursor: pointer;
}

.login-body input {
    
    box-shadow: 0px 0px 0.417em #222 inset;
    border: 1px solid #000;
    background-color: #333;
    color: #FFF;
    font-size: 13px;
    padding: 0px 5px;
    height: 30px;
    border-radius: 2px;
    width: 96%;
}

.login-body button {
    
    box-shadow: 0px 0px 0.417em #222 inset;
    border: 1px solid #000;
    background-color: #222;
    background-image: linear-gradient(to bottom, #333, #222);
    color: #FFF;
    font-size: 12px;
    padding: 0px 10px;
    height: 30px;
    border-radius: 2px;
    cursor: pointer;
}

.login-body button:hover {
    
    background-color: #333;
    background-image: linear-gradient(to bottom, #595959, #363636);
}

.spacer10 {
    
    display: block; 
    height: 10px;
}

.spacer20 {
    
    display: block;
    height: 20px;
}

.aRight {
    
    text-align: right;
}

.aCenter {
    
    text-align: center;
}