﻿@charset 'utf-8';

/* HTML & DEFAULT */

html, body {
    display: block;
    font-family: OpenSans, Arial, Verdana, sans-serif;
    font-size: 100%;
    height: 100%;
    line-height: 24px;
    min-height: 600px;
    min-width: 800px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

body {
    background-color: #f7f8fa;
    min-width: 800px;
}

/* PAGE */

#page, #splash, #page form {
    display: block;
}

#page, #splash {
    height: 100%;
}

#splash, #page form {
    position: absolute;
    width: 50%;
}

#page {
    overflow: hidden;
    padding: 0 0 0 50%;
    position: relative;
}

#splash {
    background-color: #388e3c;
    background-image: url('../images/logos/logo-large.png');
    background-position: 50% 50%;
    left: 0;
    top: 0;
}

#page form {
    left: 50%;
    padding: 30px;
    top: 50%;
    width: 400px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* TYPOGRAPHY */

a, a:hover, a:visited {
    color: #388e3c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.link {
    font-size: 90%;
    font-weight: bold;
    padding: 0 15px;
}

h1, p {
    display: block;
}

h1 {
    color: #388e3c;
    font-size: 150%;
    font-weight: bold;
    line-height: 32px;
    /*letter-spacing: -.5px;*/
    padding: 0 0 15px 0;
}

p {
    font-size: 100%;
    color: #555;
    padding: 5px 0 10px 0;
}

p.right {
    text-align: right;
}

small {
    font-size: 90%;
}

label, label span, label input {
    display: block;
}

label {
    border: 1px solid #ccc;
    /*padding: 6px;*/
    padding: 5px;
    position: relative;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

label span {
    color: #999;
    font-size: 100%;
    font-style: italic;
    font-weight: normal;
    height: 20px;
    left: 10px;
    line-height: 20px;
    padding: 0 5px;
    position: absolute;
    top: 12px;
    width: auto;
    z-index: 0;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

label.focused {
    border-color: #388e3c;
    /*border-width: 2px;
    padding: 5px;*/
    -webkit-box-shadow: inset 0 0 0 1px rgba(56, 142, 60, 1);
    -moz-box-shadow: inset 0 0 0 1px rgba(56, 142, 60, 1);
    box-shadow: inset 0 0 0 1px rgba(56, 142, 60, 1);
}

label.focused span, label.valued span {
    background-color: #f7f8fa;
    font-size: 70%;
    font-style: normal;
    font-weight: bold;
    top: -9px;
}

label.focused span, label.focused.valued span {
    color: #388e3c !important;
}

label.valued span {
    color: #999;
}

label input {
    border: none;
    color: #333;
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
    width: 100%;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button {
    background-color: #388e3c;
    color: #fff;
    display: inline-block;
    font-size: 90%;
    font-weight: bold;
    height: auto;
    line-height: 24px;
    padding: 8px 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}