@charset "utf-8";
/* CSS Document */

html {
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;	
	background: rgb(40,69,113);
    background: linear-gradient(0deg, rgba(40,69,113,1) 0%, rgba(75,126,173,1) 100%);
	height: 100%;
	margin: 0;
	color: #424242;
}
* { box-sizing: border-box; }
input, select, button { font-family: 'Roboto', sans-serif; }
.prompt { font-family: 'Prompt', sans-serif; }

h1, h2, h3, h4 { 	
	font-weight: 600;
}
h1 { font-size: 28px }
h2 { font-size: 24px }
h3 { font-size: 20px }
h4 { font-size: 18px }

a { text-decoration: none; color: inherit;}

#wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	width: 100vw;
	height: 100%;
	height: 100vh;
	min-height: 700px;
	overflow: auto;
	padding: 10px;
}

.box {
	display: inline-flex;
	width: auto;
	height: auto;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	border-radius: 20px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.4); 
	box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.4);
}
/*#demo { width: 1400px; }*/

.box .header {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	width: 100%;
	height: 150px;
	padding: 20px;
	-webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.1); 
	box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.1);
	z-index: 1;
}
.box .header .title {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	max-width: 300px;
	height: auto;
	font-size: 28px;
	line-height: 32px;
	font-weight: 600;
	text-transform: uppercase;
}
.box .header .logo {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	width: 100px;
	height: auto;
}
.box .header .logo img {
	width: 100%;
	height: auto;
}
.box .main {	
	display: inline-flex;
	width: 100%;
	height: auto;
	flex-direction: column;
	align-items: center;	
	justify-content: flex-start;
	background-color: #E6E6E6;
	z-index: 0;
	padding: 20px 0;
	overflow: hidden;
	transition: all 500ms;	
}
.box .main form {
  display: inline-block;
  width: 100%;
}

.box .main.left {
	align-items: flex-start;
	text-align: left;
}
.box .main .text {
	align-items: flex-start;
	text-align: left;
	padding: 0 20px;
}

.box .double-main {
	display: inline-flex;
	width: 100%;
	height: auto;
	min-height: 500px;
	flex-direction: row;
	align-items: flex-start;	
	justify-content: center;
}
.box .double-main .main {		
	width: auto;
	height: 500px;
	flex-grow: 1;
}
.box .footer {
	display: inline-flex;
	flex-direction: row; 
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-box-shadow: 0px -3px 8px 0px rgba(0,0,0,0.1); 
	box-shadow: 0px -3px 8px 0px rgba(0,0,0,0.1);
	z-index: 1;	
}
.box .main .row {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: auto;
	margin: 5px 0;
	padding: 0 20px;
}
.box .main .row.center {
	justify-content: center;
}
.box .main .row.filler {
	padding: 20px 20px 40px 20px;
}
.box .main .row.right {
	justify-content: flex-end;
}
.box .main .row.left {
	justify-content: flex-start;
}
.box .main .row.submit-error {
	display: none;
	padding: 3px 0 3px 0;
	font-size: 16px;
	color: #BB6311;
}
.box .main .row.submit-error.show {
	display: inline-flex;
}

.box .main .row label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 50px;
	background-color: #eeeeee;
	color: #4778A7;
	font-size: 22px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15); 
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
}
.box .main .row label.icon {	
	width: 50px;	
}
.box .main .row label.icon i {	
	font-size: 32px;
}
.box .main .row .inputs {
	display: inline-flex;
	flex-direction: column;
	flex-grow: 1;
	width: auto;
	height: auto;
	justify-content: center;
	align-items: flex-start;
}
.box .main .row .inputs input {
	width: 400px;
	height: 50px;
	padding: 0 15px;
	border: none;
	outline: none;
	font-size: 20px;
	font-weight: 400;
	color: #424242;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15); 
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
}
.box .main .row .inputs.error input {
	border: 2px #BB6311 solid;
}
.box .main .row .inputs .error-message {
	display: none;
	padding: 3px 0 1px 0;
	font-size: 14px;
	color: #BB6311;
}
.box .main .row .inputs.error .error-message {
	display: inline-block;
}
.box .main .row .small-link {
	display: inline-block;		
	color: #5F5F5F;
	font-size: 13px;	
	cursor: pointer;	
}
.box .main .row .small-link:hover {
	text-decoration: underline;
}
button, .button {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: 700;
	font-size: 21px;
	color: #3A3A3A;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	width: auto;	
	min-width: 180px;
	height: auto;
	min-height: 50px;
	border-radius: 10px;
	background-color: #E6E6E6;
	transition: all 500ms linear;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3); 
	box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
}
button::after, .button::after {
	content: '';
	border-radius: 10px;
	position: absolute;
	z-index: 1;
	display: inline-block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.2) 90%);
	opacity: 0;
	transition: all 300ms;
}
button:hover, .button:hover {	
	
}
button:hover::after, .button:hover::after {
	opacity: 1;
}
button.blue, .button.blue {
	background-color: #65B1E3;
}
button.yellow, .button.yellow {
	background-color: #F8CE00;
}
.loader {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}
.loader i {
	font-size: 40px;
	animation: rotate 1s infinite;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }	 
}


