﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');

html {
  height: 100%;
}
body {
	height: 100%;
	width: 100%;
	margin: 0;
	background-color: #059cd8;
	font-family: Montserrat;
	font-size: 17px;
	color:  #545454;
	font-weight: 300;
	line-height: 23px;
    letter-spacing: 0.5px;
    text-align: center;
}
#mid {
	height: 100%;
    display: inline-block;
    background-color: #FFF;
    position: fixed;
	width: 50%;
	max-width: 770px;
	margin: 0 auto;
	left: 0;
	right: 0;
}


#content {
	text-align: left;
	box-sizing: border-box;
	display: inline-block;
	position:absolute;
	left: 0;
	right: 0;

	margin: 2% auto;
	padding: 0 5%;
	width: 50%;
	max-width: 770px;
}
#logo {
	width: 100%;
	display: inline;
	margin-bottom: 20px;
}
.marca , .title {
	color: #059cd8;
}
hr {
	height: 1px;
	background-color: #059cd8;
	border: none;
	margin-bottom: 25px;
}
a {
	color: #059cd8;
}
#privacy_text a {
	color: #0972a4;
}

input[type="text"] , input[type="email"] , button {
	font-size: 18px;
	outline: none;
	border-style: solid;
	border-color: #059cd8;
	border-radius: 9px;
	border-width: 1px;
	margin-bottom: 25px;
	padding-left: 2%;
	height: 43px;
	width: 98%;
}
input[type="text"]:focus , input[type="email"]:focus {
	border-color: #adc014;
}
input[type="text"]::placeholder , input[type="email"]::placeholder {
 	color: #6a6a6a;
}



input[type="checkbox"] {
	-webkit-appearance: none;
	outline: none;
	background-color: #FFF;
	border: 1px solid #059cd8;
	padding: 8px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	bottom: -6px;
}
input[type="checkbox"]:checked , input[type="checkbox"]:active {
	background-color: #059cd8;
}
input[type="checkbox"]:checked:after {
	content: '\2714';
	font-size: 18px;
	position: absolute;
	top: -3px;
	left: 1px;
	color: #FFF;
}


button {
	width: 100%;
	height: 48px;
	background-color: #acbf14;
	font-weight: bold;
	color: #FFF;
	border: none;
	cursor: pointer;
}
button:hover {
	background-color: #0972a4;
	cursor: pointer;
	transition: background-color 1s;
}


.invalid {
	border-color: #F00 !important;
	color: #F00;
}
