/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 3, 2015, 11:09:47 AM
    Author     : nicholaslamb
*/

html {
    height: 100%;
}

body {
    background-color: rgb(44,53,59);
    color: #FFF;
    height: 100%;
    font-family: 'Lato', sans-serif;
}

a {
    color: #e01f1f;
}

a:hover {
    color: #ff9b9b;
}

p {
    margin: 0px;
    padding: 0px;
}

.site-wrapper {
    display: table;
    width: 100%;
    height: 100%; /* For at least Firefox */
    min-height: 100%;
    -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
    box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}

.float-middle {
    display: table-cell;
    vertical-align: middle;
}

.form-box {
    min-width: 260px;
    max-width: 500px;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.6);
    box-shadow: 0 0 10px rgba(0,0,0,.6);
    display: none;
}

#subscribe-page-unsubscribe-link {
    text-align: center;
    margin-top: 10px;
    display: none;
}

.form-heading {
    background-color: #e01f1f;
    font-weight: 700;
}

.form-heading>h1 {
    margin: 0px;
    font-size: 2.8em;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-shadow: 0px 1px 3px rgba(150, 150, 150, 1);
}

.form-message {
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background-color: #ff7171;
    font-weight: 300;
}

.form-message>p {
    font-size: 1em;
}

.form-form {
    height: auto;
    clear: both;
    height: 100px;
}

.form-form>form>input {
    height: 50px;
    width: 100%;
    padding: 0px;
    color: #F04A4C;
    line-height: 2;
    border: 0px;
    float: left;
    font-size: 1.6em;
    text-align: center;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-form>form>input:focus {
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(255,155,155,1);
    -moz-box-shadow: inset 0px 0px 10px 2px rgba(255,155,155,1);
    box-shadow: inset 0px 0px 10px 2px rgba(255,155,155,1);
    outline: none;
}

.form-form>form>button {
    height: 50px;
    width: 100%;
    float: right;
    background-color: #e01f1f;
    border: 0px;
    font-size: 1.75em;
}

.form-form>form>button:focus {
    background-color: darkgoldenrod;
    outline: none;
}

.form-form>form>button:hover {
    background-color: darkred;
}

::-webkit-input-placeholder {
   color: #ff9b9b;
}

:-moz-placeholder { /* Firefox 18- */
   color: #ff9b9b;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #ff9b9b;  
}

:-ms-input-placeholder {  
   color: #ff9b9b;  
}

@media (min-width: 500px) {
    .float-middle {
        vertical-align: middle;
    }
    
    .form-heading>h1 {
        font-size: 3.7em;
    }
    
    .form-message>p {
        font-size: 1.3em;
    }
    
    .form-form>form>input {
        width: 70%;
        text-align: left;
        padding-left: 15px;
    }

    .form-form>form>button {
        width: 30%;
    }

    .form-form {
        height: 50px;
    }
    
    .form-heading>h1 {
    padding-right: 20px;
    padding-left: 20px;
}

}