﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    box-sizing: border-box;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:focus {
    outline: none;
}

strong {
    font-weight: bold;
}
/* micro clear fix */
.grouping:before,
.grouping:after {
    content: " ";
    display: table;
}

.grouping:after {
    clear: both;
}

img, iframe, video, object {
    max-width: 100%;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background: url(../images/pleasington.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.background-overlay {
    width: 100%;
    height: 100%;
    background-color: darkolivegreen;
    opacity: 0.7;
}

.login-form {
    position: absolute;
    width: 90%;
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.login-form h1 {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.login-form div {
    width: 100%;
}

.login-form .form-field-container {
    border-bottom: 1px solid lightgrey;
    padding: 5px 0;
    margin: 25px 0;
}
.login-form .form-field {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    color: white;
    font-size: 1em;
}

.login-form .btn {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    background: none;
    color: white;
    border: 2px solid white;
    font-size: 1.2em;
    cursor: pointer;
}

.login-form a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.5em;
    float: right;
}

.login-form a:hover, .loing-form a:focus {
        text-decoration: underline;
    }

.login-form .btn:hover,
.login-form .btn:focus {
    text-decoration: underline;        
}



::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: darkgray;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: darkgray;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: darkgray
}

#messageContainer {
    /*background: white;*/
    color: lightgreen;
}

@media screen and (min-width: 500px) {
    .login-form h1 {
        font-size: 2em;
    }
}