*{
	box-sizing: border-box;
}
body{
	margin: 0;
	height: 100vh;
	max-width: 100vw;
	overflow: hidden;
	font-family: "Lato";
	font-weight: 600;

	color: #555;
	background-color: #ecf0f3;
}

.nav-bar nav{
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  background-image: linear-gradient(#000,#05f);
  background-color: #15f;
  color: #fff;
  overflow: visible;
}

hr{
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: 5px;
	overflow: visible;
	background-color: cyan;
}

.nav-bar nav h1{
	position: relative;
	top: 0;
  padding-left: 50px;
  padding-top: 0;
  font-size: 24px;
}

.nav-bar nav ul{
	display: flex;
	position: absolute;
	right: 0;
	padding-right: 60px;
	list-style-type: none;
}
.nav-bar nav ul a{
	padding: 0 20px;
	color: #fff;
  text-decoration: none;
}

.login-div{
	width: 430px;
	height: 600px;
	padding: 60px 35px 35px 35px;
	border-radius: 40px;
	background-color: #ecf0f3;
	box-shadow: 13px 13px 20px #cbced1,-13px -13px 20px #fff;
}

.logo{ padding: 8px 20px 8px 15px;
	background-image: url(afarlogo.jpg);
	background-position: center;
	background-size: 119px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto;
	box-shadow: 0px 0px 5px #5f5f5f,
	            0px 0px 5px #ecf0f3,
	            8px 8px 15px #a7aaaf,
	            -8px -8px 15px #fff;
}

.title{
	text-align: center;
	font-size: 28px;
	padding-top: 28px;
	letter-spacing: 0.5px;
}

.fields{
	width: 100%;
	padding: 75px 5px 5px;
}

.fields input{
	border: none;
	outline: none;
	background: none;
	font-size: 18px;
	color: #555;
	padding: 20px 10px 20px 5px;
}

form .fields .email, 
form .fields .password{
	margin-bottom: 30px;
	border-radius: 25px;
	box-shadow: inset 8px  8px  8px #cbced1,  
	            inset -8px -8px -8px #fff;   
}

.fields svg{
	height: 22px;
	margin: 0 10px -3px 25px;
}

.signin-btn{
	outline: none;
	border: none;
	cursor: pointer;
	width: 100%;
	height: 60px;
	border-radius: 30px;
	font-size: 20px;
	font-weight: 600;
	font-family: "Lato", sans-serif;
	color: #fff;
	text-align: center;
	background-color: #02c8db;
	box-shadow: 3px 3px 8px #b1b1b1,
	            -3px -3px 8px #fff;
	transition: all 0.5s;
}

.signin-btn:hover{
	background-color: #50e5b9;
}

.signin-btn:active{
	background-color: #88ef9e;
}

.link{
	padding-top: 20px;
	text-align: center;
}

.link a{
	text-decoration: none;
	color: #aaa;
	font-size: 15px;
}

footer{
	position: absolute;
	bottom: 0;
	text-align: center;
	background-color: #15f;
  height: 60px;
  width: 100%;
   color: #fff;
  overflow: auto;
  justify-content: center;
}

footer .fo-sp{
	position: absolute;
	top: 15px;
	left: 40%;
	margin: 0 20px;
	padding: 0 20px;
}
footer .fo-sp a{
	color: #fff;
	text-decoration: none;

}

