
html, body {
	font-family: Arial, Verdana, sans-serif;
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	width:100vw;
	}

/*SCROLL BAR SETTING FOR ONLY CHROME OR SOMETHING*/

body::-webkit-scrollbar {
    width: 4px;
	height: 4px;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
/*--------------------------------------------------*/
.center {
    margin: auto;
    width: 100%;
    /*border: 3px solid green;*/   
	text-align:center;
}

#container {
	/*position:fixed;*/
    padding:0;
    margin:0;
	
    top:0;
    left:0;

    width: 100vw;
    height: 100%;
    background-color: white;
}

#main_logo{
	margin-top: 16%;
}

#imagewrapper{
	/* border: 1px solid orange; */
	display:inline-block;
	text-align:center;
	width:100%;
}

 #imagewrapper img{
	display:inline-block;
	width:420px;
	height:auto; 
	max-width:100%;
	
} 

#header, #footer{
	float: left;
	width : 100%;
	text-align:center;
	margin-top: 10%;
}
#header p{
	padding:12px;
	margin:auto;
}

#footer{
	float: left;
	width : 100%;
	text-align:center;
	/*border: 1px solid pink;*/
}

#main{
	/*border: 1px solid red; /*REMOVE*/
	float: left;
	text-align:center;
	width : 100%;
	padding-top: 5%;
}


.div1{
	width : 50vw;
	height:100%;
	min-height: 65vw;
	float : left;
	box-shadow: 5px 0px 10px #888888;
	background: #0db1e6; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #015476 , #18d0ef); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #015476, #18d0ef); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #015476, #18d0ef); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #015476 , #18d0ef); /* Standard syntax (must be last) */;
	}

.div2{
	width : 50vw;
	height: 100%;
	float : left;
	background-color: none;
	}
    
	
#myBtns button{
	font-size: 45px;
	margin: 5px;
	border-radius: 5px;
	padding:8px;
	text-align:center;
}

#myBtns button > img{
	float:left;
	padding-top:5px;
}

#myBtns button.btn3> img{
	float:left;
	padding-top:16px;
}


.btn1{
	width: 280px;
	background-color: white;
    color: #009cff;
    border: 1px solid #3bcef5;
}
.btn1:hover{
    border: 1px solid #009cff;
}
.btn2{
	width: 280px;
	background-color: white;
    color: #ffcc00;
    border: 1px solid #3bcef5;
}

.btn2:hover{
    border: 1px solid #ffcc00;
}

.btn3{
	width: 280px;
	background-color: white;
    color: #ff0000;
    border: 1px solid #3bcef5;
}
.btn3:hover{
    border: 1px solid #ff0000;
}


/*Form CSS Goes here*/

.input-wrapper{
  position:relative;
  line-height:14px;
  margin:0 10px;
  display:inline-block;
}

.pseudolink{
	color:#07e1f3;
	cursor:pointer;
}

.welcome{
	font-family: 'Century Gothic',cursive, Arial, Verdana, sans-serif;
	font-size: 20px;
	
}
.error{
	font-size: 15px;
	color:red;
	padding:5px;
}
#fineprint{
	max-width: 200px;
	font-size:11px;
	text-align:centre;
}

#fineprint a{
	text-decoration:none;
	color:#07e1f3;
}


label{
  color:#bbb;
  font-size:11px;
  text-transform:uppercase;
  position:absolute;
  z-index:2;
  left:20px;
  top:14px;
  padding:0 2px;
  pointer-events:none;
  background:none;
  transition:transform 100ms ease;
  transform:translateY(-20px);
}

input {
  font-size:16px;
  color:#555;
  border:none;
  border-bottom: 1px solid #bbb;
  padding:10px 20px;
  position:relative;
  outline: none;
}
  input:invalid + label{
    transform:translateY(0);
  }
    
  input:focus{
	border-bottom: 2px solid red;
	font-size: 16px
  }

input:focus + label{
    color:#2b96f1;
    transform:translateY(-20px);
	font-size: 9px;
	left:12px;
}


select{
	font-size:16px;
	color:#555;
	border:none;
	border-bottom: 1px solid #bbb;
	padding:10px 20px;
	position:relative;
	outline: blue;
}

select:focus + label{
    color:#2b96f1;
    transform:translateY(-20px);
	font-size: 9px;
	left:12px;
}


/*Form CSS ends here*/



@media only screen and (max-width: 700px) {
	
	
	#container {
	/*position:absolute;*/
    padding:0;
    margin:0;

    top:0;
    left:0;
	right:0;

    width: 100vw;
    background-color: white;
	}
	
    .div1{
	/* border: 1px solid blue; */
	height:625px;
	width: 100vw;
	box-shadow: 0px 5px 10px #888888;
	margin:auto;
	}
	
	.div2{
	/* border: 1px solid black; */
	width: 100vw;
	background-color: none;
	margin:auto;
	}
	
	
	#header, #footer {
	/*border: 1px solid red;*/
	float: left;
	width : 100vw;
	text-align:center;
	padding-top: 20px;
	}
	
	#main{
	/*border: 1px solid red; /*REMOVE*/
	float: left;
	text-align:center;
	width : 100vw;
	padding-top: 20px;
	margin:0;
	padding-left:0;
	padding-right:0;
	
	}
	
		
	#myBtns button{
		font-size: 35px;
		margin-bottom: 2px;
		border-radius: 5px;
		padding-top:8px;
		text-align:center;
		margin-left:0;
		margin-right:0;
	}

	#myBtns button > img{
		float:left;
		padding:4px;
	}

	#myBtns button.btn3> img{
		float:left;
		padding-top:8px;
	}

	
	#myBtns button.btn1,.btn2,.btn3{
		width: 240px;
		padding-top:10px;
	}

	#imagewrapper img{
	display:inline-block;
	width:320px;
	height:auto; 
	max-width:100%;
	}

	/* 	Form elements CSS for mobile */
	input:focus + label{
		display:none;
	}
	
	select:focus + label{
		display:none;
	}
	
	label{
		color:#bbb;
		font-size:11px;
		text-transform:uppercase;
		position:absolute;
		z-index:2;
		left:2px;
		top:2px;
		padding:0 2px;
		pointer-events:none;
		background:none;
		transition:transform 100ms ease;
		transform:translateY(-15px);
	}
	
	label[for=res]{
		display:none;
	}
	
	select {
		width: 240px;
		padding-left:25px;
	}

	
} 
	
@media screen and (max-width: 400px) { 
	
	.div1{
		float:left;
		height:500px;
		width: 100vw;
		box-shadow: 0px 5px 10px #888888;
	}
	

}

@media screen and (max-width: 300px) {
	
    #imagewrapper img{
	display:inline-block;
	width:200px;
	height:auto; 
	max-width:100%;
	
	} 
	
	.div1{
	float:left;
	height:400px;
	width: 100vw;
	box-shadow: 0px 5px 10px #888888;
	}
	
	#myBtns button{
		font-size: 30px;
		margin-bottom: 2px;
		border-radius: 5px;
		padding-top:8px;
		text-align:center;
		margin-left:0;
		margin-right:0;
	}

	#myBtns button > img{
		float:left;
		padding:4px;
	}
	
	#myBtns button.btn1,.btn2,.btn3{
		width: 200px;
		padding-top:10px;
	}
}

}
