/* base styles */
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: #ccc;
    color: #000;
    height: 100%;
    font-family: Lucida Sans Unicode, Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
}

#inputline {
    margin-bottom: 24px;
}

.messages-error {
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 5px;
  background-color: #ffebe4;
  border: 1px solid #c02f2c;
}

.center {
  text-align: center;
}

li,
p{
    line-height: 1.4em;
	margin-bottom: 1.5em;
}

H1{
	color: #192C5E;
}

/** frontend **/
#distance {
    margin-bottom: -150px;
    height: 40%;
}

#logo {
    margin-bottom: 48px;
}

#build {
    font-weight: bold;
}

#message {
    margin: 0px auto;
    padding-top: 50px;
    width: 400px;
    color: #456981;
    white-space: nowrap;
}

/*************/
/**  login  **/
/*************/
#login {
	background: #fff url(./bg-crystals.png) no-repeat -590px -560px;
    border: 1px #999 solid;
        border-bottom: 2px #666 solid;

    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    -moz-box-shadow:    0 4px 10px rgba(0,0,0,0.25);
    box-shadow:         0 4px 10px rgba(0,0,0,0.25);

    display: inline-block;
    max-width: 720px;
    min-width: 290px;
    padding: 32px;
    position: relative;
    text-align: left;
}
#login #header {
    margin-bottom: 30px;
}
#login form {
	text-align: center;
}
#login ul {
    margin: 0px auto;
}
#login .link {
    padding-left:0px;
}
#login .INFO {
    background-color: #FFC;
    border: 1px #96965E solid;
    color: #000;
    margin-bottom: 24px;
    padding: 12px;
}
#login .WARNING, #login .error {
    background-color: #f44;
    border: 1px #c00 solid;
    color: #fff;
    margin-bottom: 24px;
    padding: 12px;
}
#login .error {
    background-color: #f44;
    border: 1px #c00 solid;
    color: #fff;
    margin-bottom: 24px;
    padding: 12px;
}

#login input { /* username and password inputs */
    border: 1px #555 solid;
    font: normal 14px sans-serif;
    padding: 6px;
    min-width: 180px;
    text-align: left;
    width: 100%;
}
#login > #content #submitbuttons input {
	border-radius: 1px;
	background-color: #2b4060;
    background-image: linear-gradient(#406090, #2b4060);
    border: 1px solid #2c4263;
    color: #ffffff;
	cursor: pointer;
	display: inline-block;
    font: bold 12px sans-serif;
    margin: 0 auto;
    padding: 6px 14px;
    text-align: center;
    text-decoration: none;
}
#login > #content #submitbuttons input:hover {
	border: 1px solid #1f2e45;
}



/** placeholders **/
.placeHolderWrapper {
	display: block;
	position: relative;
}

.placeHolderWrapper .placeHolder {
    color: #cccccc;
    font: normal 14px sans-serif;
    left: 7px;
    position: absolute;
    top: 7px;
    font-style: italic;
}