
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)), url(bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	font-family: sans-serif;
}

.form {
	background-color: #fff;
	border: 2px solid #c0e1f9;
	box-shadow: 0 0 0 10px #fff;
	height: 350px;
	width: 420px;
	text-align: center;
}

.mainText {
	font-size: 27px;
	margin: 40px 0 5px 0;
	color: #030303;
}

.secondText {
	font-size: 18px;
	margin: 0;
	color: #030303;
	margin-bottom: 25px;
}

.formInput {
	background: #f1f1f1;
	height: 50px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	width: 300px;
	margin: 15px auto 0 auto;
}

.formInput i {
	font-size: 17px;
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
	padding-right: 10px;
}

.formInput input {
	flex: .7;
	background: #f1f1f1;
	border: none;
	outline: none;
	font-size: 15px;
}

.send {
	border: none;
	color: #fff;
	background: #3a3e64;
	width: 180px;
	height: 40px;
	border-radius: 40px;
	font-weight: bold;
	font-size: 18px;
	margin-top: 30px;
	box-shadow: 0 0 20px 0 rgba(5, 140, 221, .8);
	transition: .4s;
	outline: none;
}

.send:hover {
	box-shadow: 0 0 25px 5px rgba(5, 140, 221, 1);
}






*,
*:before,
*:after {
    box-sizing: border-box;
    
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}


/*Container
====================*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}




/*header
====================*/
.header {
    width: 100%;
	height: 54px;
	background: #3a3e64;
    
    
   position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
/*     padding: 35px 0;*/
    
    border-bottom: 1px solid #515369;
}



/*Nav
====================*/


.nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.header_logo {
     text-transform: uppercase;
     font-size: 17px;
     color: aliceblue;
}



.nav__link {
    margin-left: 50px;
    color: #fff;
    text-decoration: none;
    opacity: .75;
    
    transition: opacity .1s linear;
    
}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:hover {
     opacity: 1;

}