@charset "utf-8";



/***  Resets ***/
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    padding: 0;
    margin: auto;
    min-height: 100%;
}

body:after {
    background: rgba(0, 0, 0, .1);
    position: absolute;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 1;
    top: 0;
    left: 0;
}

/*~~~~~~~~~~~~~~~~
  Login Form
~~~~~~~~~~~~~~~~*/
label {
    display: none;
}

form {
    -webkit-animation: animateUp .4s ease-out;
    animation: animateUp .4s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#loginContainer {
    border: 12px solid rgba(0, 0, 0, .3);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -50%);
    max-width: 490px;
    width: 100%;
    border-radius: 6px;
    z-index: 2;
}

#loginForm {
    background: #fff;
    padding: 2em;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
    overflow: hidden;
}

#loginForm img {
    display: block;
    margin: 0 auto 2em;
}

#loginForm input {
    background: #fbfbfb;
    border: 3px solid #ddd;
    margin: .5em 0 1em;
}

#loginForm input[type="text"], #loginForm input[type="password"] {
    width: 100%;
    height: 42px;
    padding: 0 1em;
}

#loginForm input[type="checkbox"] {
    float: left;
    width: 25px;
    height: 25px;
    margin: 0;
}

@media all and (min-width: 320px) and (max-width: 640px) {
    #loginContainer {
        top: 5%;
        transform: none;
    }

    #forgotPW {
        float: none;
        text-align: center;
        display: block;
    }
}

h4 {
    display: block;
    -webkit-margin-before: 1.33em;
    -webkit-margin-after: 1.33em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold !important;
	font-size: .9rem !important;
	margin: 0px;
}


/***  Resets  ***/
* {
    font-family: 'Roboto', sans-serif;
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

/*~~~~~~~~~~~~~~~~~~~~~~
  General Styles
~~~~~~~~~~~~~~~~~~~~~~*/
html {
  font-family: 'Roboto', sans-serif;
}

body {
    background-color: #666;
    background-repeat: no-repeat;
    font-size: 16px;
}

@media all and (min-width: 1920px) {
    body {
        background-size: cover;
    }
}

h4.icon.m-icon-attention:before {
    margin-right: .5rem;
}

.error {
    display: inline-block;
    position: relative;
    top: -1rem;
    font-size: .85rem;
    color: red;
}

/*~~~~~~~~~~~~~~~~~~
  Form Notice
~~~~~~~~~~~~~~~~~~*/
div.errorNotice {
    background: #fef1bc;
    border-radius: 5px;
    padding: 1em 1.5em;
    margin-bottom: 1em;
}

div.errorNotice h4 {
    font-size: .9rem;
}

div.errorNotice a {
    text-decoration: none;
    color: #990000;
}

div.errorNotice a:hover {
    text-decoration: underline;
}

div.errorNotice p {
    font-size: .75rem;
    line-height: 1.2rem;
}

/*~~~~~~~~~~~~~~~~~~
  Form
~~~~~~~~~~~~~~~~~~*/
#loginForm input {
    color: #ccc;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.5s ease;
    transition: border 0.5s ease;
}
#loginForm input:focus {
    color: #333;
    border: 3px #990000 solid;
}
#loginForm input.activate {
    color: #333;
}

#forgotPW {
    text-decoration: none;
    color: #990000;
    margin-top: 5em;
    float: right;
}

.btn {
    background: #990000;
    font-size: 1.1em;
    font-size: 1.1rem;    
    font-weight: 400;
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 48px;
}


