@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

html, body{
	height: 100%;
	min-height: 480px;
}

body {
	font-family: 'Open Sans', sans-serif;
	background: #095070;
	color: #FFFFFF;
}
*::selection {
    background: #ebf6fd;
    color: #18467b;
    border-radius: 22px;
}

#header{
	background: #ebf6fd;
	padding: 40px 0;
	width: 100%;
	color: #18467b;

}

#header span{
	text-transform: uppercase;
	color: #7d7e7f;
	font-weight: lighter;
	font-size: 0.8em;
}
#header #logo{
    margin-top: 16px;
}
#header .img-fluid{
    width: 180px; 
}


#header h1{
	margin: 0;
	text-transform: uppercase;
	font-size: 1.25em;
	font-weight: bold;
}

#header .event-name{
	padding-bottom: 15px;
	padding-top: 15px;
	padding-left: 25px;
	border-left: 1px solid #175c86;
}

.container{
	width: 60%;
}

#form{
	padding: 35% 0
}

#form label{
	font-size: 1.6em;
	font-weight: 600;
	display: block;
	margin-bottom: 30px;
	margin-top: -100px;
}

#form .form-control{
	background: transparent;
	border: 0;
	color: #FFF;
	border-bottom: 0;
	box-shadow: rgba(26, 145, 162, 0.3) 0px 1px;
	border-radius: 0;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 1.5em;
}



#form .btn-info{
	margin-top: 20px;
	background: #008ce9;
	border: 0;
	color: #fff;
	font-weight: 600;
	font-size: 1.1em;
	transition: all .2s ease-in-out;
    border-radius: 22px;;
}

#form .btn-info:hover,
#form .btn-info:active,
#form .btn-info:focus{
	color: #fff;
	border: 0;
	background: #0574bf;
	outline: none;
	transform: scale(1.06);
    box-shadow: 0 0 0.35em #f4f4f4;
}

#form ::placeholder {
  color: #b9dbf5;
}

#form :-ms-input-placeholder {
  color: #b9dbf5;;
}

#form ::-ms-input-placeholder {
  color: #b9dbf5;
}

#form .loader{
	position: absolute;
    top: 0;
    background: #095070;
    bottom: 0;
    margin: auto;
    display: block;
    text-align: center;
    padding: 30% 0;
    left: 0;
    width: 100%;
    transition: all .2s ease-in-out;
}

@media (max-width: 768px) {
	#header .event-name{
		text-align: center;
		padding-bottom: 0;
		padding-top: 15px;
		padding-left: 0;
		border-left: 0;
	}
	#logo{
		text-align: center !important;
	}
	#form label {
	    font-size: 1.4em;
	}
}

