﻿
@import url('https://fonts.googleapis.com/css?family=Poppins');

*{
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	font-family: 'Poppins', sans-serif;
	
	}

.outer
{
    width:100%;
    height:auto;
    margin:auto;
}

.outercolor
{
    position:relative;
    width:100%;
    height:100vh;
    background-image:
    linear-gradient( 50deg,
    #01b2cd, #1279c2
    );
}

.innerouter
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    height:500px;
    -webkit-box-shadow: -4px 3px 10px 8px #01b2cd;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    -4px 3px 10px 8px #01b2cd;  /* Firefox 3.5 - 3.6 */
    box-shadow:         -4px 3px 10px 8px #01b2cd;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    background:#f9f9f9;
    border-radius:20px;
}



.bannerimg
{
    position:relative;
}

.text
{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-image:
    linear-gradient( 45deg,
     #1279c2,#01b2cd,#1279c2
    );
    opacity:.8;
   padding:125px 20px 20px 70px;
}

.text h1
{
    color:#b1f0fa; 
    font-size:2.6em;
    font-weight:bold;
    line-height:50px;
}
.text p
{
    color:#8de3f0;
    line-height:25px;
}

.bannerimg img
{
    max-width:100%;
    height:500px;
    vertical-align:middle;
}

.box{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,3%);
	width:400px;
	padding:40px;
	box-sizing:border-box;
}

.box h1
{
    text-align:center;
    font-weight:bold;
    padding-bottom:40px;
    color:#282828;
    font-size:2.3em;
}

.box h4{
		margin:0 0 30px;
		padding:0;
		color:#01b2cd;
		text-align:center;
		font-weight:bold;
}

.box .inputBox{
	position:relative;
}

.box .inputBox input{
	width:100%;
	padding:10px 0;
	font-size:16px;
	color:#000;
	margin-bottom:30px;
	letter-spacing:2px;
	border:none;
	border-bottom:1px solid #a0a0a0;
	outline:none;
	background:transparent;
}

.box .inputBox label{
	position:absolute;
	top:0;
	left:0;
	padding:10px 0;
	font-size:14px;
	color:#c3c3c3;
	pointer-events:none;
	transition:.5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label
{
	top:-18px;
	left:0;
	color:#03a9f4;
	font-size:12px;
}
.box input[type="submit"]
{
	background:transparent;
	border:none;
	outline:none;
	color:#fff;
	    background-image:
    linear-gradient( 50deg,
    #01b2cd, #1279c2
    );
	padding:10px 20px;
	cursor:pointer;
	border-radius:32px;
	width:100%;
}


.box h6
{
    text-align:center;
    
   
}

.box h6 a
{
    color:#282828;
     font-size:1.1em;
     text-decoration:none;
     padding-top:20px;
}


.outerline{
	width:100%;
	height:auto;
	text-align:center;
	margin-top:-40px;
	margin-bottom:40px;

	}

.line1{
	width:50px;
	height:6px;
	
	display:inline-block;
	transform: skew(-30deg);
	border-top:2px solid #282828;
	border-bottom:0px solid green;
	border-left:0px solid green;
	border-right:2px solid #282828;
	margin-right:3px;
}
.line2{
	width:50px;
	height:6px;
	
	display:inline-block;
	transform: skew(-30deg);
	border-top:0px solid green;
	border-bottom:2px solid #282828;
	border-left:2px solid #282828;
	border-right:0px solid green;
}


