body{
	margin: 0;
	padding: 0;
	background: #fff;
	background-position: center;
	background-size: cover;
	background-repeat: none;
	background-attachment: fixed;

}
.clr{
	clear: both;
}
.container{
	width: 70vw;
	height: 70vh;
	margin: 5% auto;
	padding: 0;
	border-radius: 5px;
	box-shadow: 0 2px 50px #ccc;
	font-family: sans-serif;
	background: #ffffff;
}
.cols{
	width: 50%;
	height: 100%;
	margin: 0;
	padding: 20px;
	float: left;
	box-sizing: border-box;
}
.cols:nth-child(1){
/*	padding: 0;*/
	overflow: hidden;
	background: linear-gradient(to bottom right, #003399, #003399, #ff0000);
}
.cols:nth-child(1) .main-text{
	color: #fff;
	font-size: 30px;
}
.cols:nth-child(1) .main-text small{
	color:#eee; 
	font-size: 14px;
}
.cols:nth-child(1) a{
	color:#fff; 
	font-size: 12px;
	text-decoration: none;
	transition: ease-in-out 0.3s all;
}
.cols:nth-child(1) a:hover{
	color:#eee; 
	font-style: italic;
	text-decoration: underline;
}
.main-text{
	color: #003399;
	font-size: 20px;
}
.slog{
	color: #003399;
}
.main-desc{
	line-height: 1.5em;
	font-size: 12px;
}
.container form input{
	padding:10px 20px;
	width: 96%;
	margin: 5px 2%;
	font-size: 16px;
/*	border-radius: 5px;*/
	border: 1px solid #ccc;
	outline: none;
	text-align: center;
	box-sizing: border-box;
	transition: ease-in-out 0.3s all;
}
.container form input:focus{
	box-shadow: 0 2px 10px #ccc;
}
.container form button{
	padding:10px ;
	margin: 5px 2%;
	width: 96%;
	font-size: 16px;
	background: #003399;
	color: #fff;
	border: none;
	cursor: pointer;
	outline: none;
	font-weight: bolder;
	box-sizing: border-box;
	transition: ease-in-out 0.3s background;
}
.container form button:hover{
	box-shadow: 0 2px 30px #ddd;
	background: linear-gradient(to bottom right, #002299, #002299, #ff0000);
}
/*.container a{
	text-decoration: none;
	color: #003399;
	transition: ease-in-out 0.3s all;
}
.container a:hover{
	text-decoration: underline;
}*/
.optLinks{
	color: #003399;
	padding: 10px;
	margin:5px 10px;
	font-weight: bolder;
/*	border-radius: 10px;*/
/*	border: 1px solid #fff;*/
	background: #eee;
	text-decoration: none;
	transition: ease-in-out 0.3s all;
}
.optLinks:hover{
	text-decoration: none;
	background: #003399;
	color: #fff;
/*	border: 1px solid #005599;*/
}

@media(max-width: 600px){
	.container{
		width: 90vw;
		height: 90vh;
		margin: 5vh auto;
		background: #ffffff;
		overflow-y: scroll;
	}
	.cols{
		width: 100%;
		height: initial;
		margin: 0;
		padding: 10px;
		float: none;
		box-sizing: border-box;
	}
	.cols:nth-child(1){
/*		height: inherit;*/
		box-shadow: none;
		overflow: hidden;
		background: linear-gradient(to bottom right, #003399, #003399, #ff0000);
	}
}
