﻿html {
  font-family: sans-serif;
  position: relative;
  min-height: 100%;
}

body {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.login-box {
    position: absolute;
    width: 360px;
    height: 220px;
    top: 50%;
    left: 50%;
    margin-top: -110px;
    margin-left: -175px;
    border: 1px solid #e0e0e0;
    background-color: #fefefe;
}
.login-box h2{
    color: #4f4f4f;
    text-align: center;
}

.login-box table{
    height: 100%;
}

.button {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    box-sizing: border-box;
    color: #555;
    background: #fafafa;
    border: 1px solid #d9dadc;
}

.button:hover,
.button:focus {
    color: #333;
    text-decoration: none;
    background: #f4f4f4;
}

.submit-button {
    background-color: #014784;
    border-color: #337AB7;
    color: #fff;
}

.submit-button-primary:hover,
.submit-button:focus {
    ackground: #e4e4e4;
    border-color: #8f8f8f;
    color: #0034ff;
}



input[type="text"],
input[type="password"] {
    padding: 4px;
    border: solid 1px #ccc;
    background-color: #FFF;
    width: 350px;
    color: #333;
    box-sizing: border-box;
}

.form-actions {
    padding: 10px;
}

.warning {
    color: #ff0000;
    font-size: 92px;
}

.form ul.errorlist {
    padding: 2px 0 0 0;
    margin: 0;
    list-style-type: disc;
    color: #C22;
    font-size: 12px;
}

.form ul.errorlist li{
    list-style-type: none;
}
