/*-----------------------------------------------------------------------------------*/
/* GENERAL BEGIN
/*-----------------------------------------------------------------------------------*/

body {
	margin: 0;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
    height: 100%;
	font-size: 1.4em;
}

html {
	height: 100%;
	margin:0;
	padding:0;
	background: #edf1f2;
	font-size: 62.5% !important;
	background-image: -ms-linear-gradient(top left, #ED1C24 0%, #9C9EA1 100%);
	background-image: -moz-linear-gradient(top left, #ED1C24 0%, #9C9EA1 100%);
	background-image: -o-linear-gradient(top left, #ED1C24 0%, #9C9EA1 100%);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #ED1C24), color-stop(100, #9C9EA1));
	background-image: -webkit-linear-gradient(top left, #ED1C24 0%, #9C9EA1 100%);
	background-image: linear-gradient(to bottom right, #ED1C24 0%, #9C9EA1 100%);
}

html, body {
   margin: 0 !important;
   padding: 0 !important;
}

input, textarea, h2, a, p {
   font-family: 'Open Sans', sans-serif;
}

#wrapper {
    max-width: 2560px;
    margin: 0 auto;
}

#container {
    width: 500px;
    margin: 0 auto;
}

#content {
    padding: 1em;
}

#content img {
    max-width: 50%;
    display: block;
    margin: 0 auto;
	margin-bottom: 1em;
}

h2 {
    font-size: 1em;
    color: white;
    font-weight: 500;
    text-align: center;
}

input, textarea {
    width: 100%;
    margin: 0.5em 0;
    padding: 1em;
    -webkit-appearance: none;
    border: 0px;
    border-radius: 3px;
    background: rgba(255,255,255,0.7);
}

input:focus, textarea:focus {
    background: white;
    outline: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background: white;
     -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background: rgba(255,255,255,0.7);
    cursor: pointer;
}

input[type="submit"]:disabled {
    background: rgba(255, 255, 255, 0.3);
}

span.interpunct {
	font-weight: 700;
	color: white;
	margin: 0 0.2em;
}

.social-holder {
	text-align: center;
}

.social-holder a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 0.8em;
	font-weight: 600;
	 -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-holder a:hover {
	color: white;
}

.inner {
	margin-left: auto;
    margin-right: auto;
}

.outer {
	display: table;
    position: relative;
    height: 100%;
    width: 100%;
}

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

.alert p {
	font-size: 0.8em;
    color: white;
    background: rgba(144,144,144,0.5);
    padding: 1em;
    border-radius: 3px;
    margin: 0.5em 0;
}

.disabled {
	display: none;
}

.enabled {
	display: block;
}

.red {
    color:red;
}
.green {
    color:green;
}
