 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
		
    margin: 0;
    
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6c7279;
    -webkit-font-smoothing:
    antialiased; 
    
    background-color: #fff;

	background: #f1f5ff;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*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: #000;
}



.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;

}



input {
	height: 45px;
	width: 100%;
	color: #3b5983;
	font-size: 14px;
	line-height: 16px;
	border: 2px solid #e9f2ff;
	border-radius: 5px;
	padding-left: 25px;
}
input:focus {
	outline: none;
	border: 2px solid #C1D9FD;

}

.circle {
	position: absolute;
	z-index: 1;
	width: 534px;
	height: 534px;
	border-radius: 50%;
	background: #d7faff;
	box-shadow: 0px 4px 70px 6px rgba(217, 229, 255, 0.25);
}

main {
	background: #f1f5ff;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}



.register-form-container {
	position: relative;
	z-index: 2;
	max-width: 415px;
	width: 100%;
	background: #fff;
	box-shadow: 0px 6px 50px rgbal(217, 229, 255, 0,7);
	border-radius: 20px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 38px;
	padding-bottom: 38px;

}

.form-title {
  color: #30507d;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 38px;	
}

.form-field {
margin-bottom: 13px;
}


.button {
	width: 355px;
	font-weight: bold;
	font-size: 14px;
	display: block;
	height: 45px;
	background: #3a3e64;
	border-radius: 5px;
	color: #fff;
	text-transform: uppercase;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}


.button:hover {
	background-color: #0D6CF2;
}

a.button {
text-decoration: none;
}
.button-google {
	color: #c6cfdc;
	background: #f2f6ff;
}
.button-google:hover {
	background: #e2e6f0;
	color: #fff;
}
.divider {
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	color: #405d87;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 25px;
}