body{
	font-family: 'Titillium Web', sans-serif;
	background: #e6e6fa;
}

.header{
	padding: 100px 0;
	background-image: linear-gradient(to bottom, #2980b9 0%, #3498db 100%);
	margin: 0;
	height: 10vh;
}
.content{
	text-align: center;
	margin: 0;
	color: #0D083B;
}

.box{
	padding: 20px 0;
	width: 500px;
	margin: 20px auto; 
	position: relative;
	background: #fff;
	border: 1px solid #eee;
	top: -100px;
}

input[type=text], input[type=password]{
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #CCC;
	color: #555;
	box-sizing: border-box;
	font-size: 18px;
	display: block;
	width: 300px;
	margin: 20px auto;
	padding: 10px;
	outline: none;    
	
}

input::-webkit-input-placeholder {
  color: #AAA;
}

input:focus::-webkit-input-placeholder {
  color: dodgerblue;
}

.input:focus+.underline {
  transform: scale(1);
}

.input:focus+.underline2 {
  transform: scale(1);
}

.underline {
  background-color: dodgerblue;
  display: inline-block;
  height: 2px;
  left: 100px;
  margin-top: -6px;
  position: absolute;
  top: 179px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 300px;
}

.underline2 {
  background-color: dodgerblue;
  display: inline-block;
  height: 2px;
  left: 100px;
  margin-top: -6px;
  position: absolute;
  top: 240px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 300px;
}

input[type=submit]{
	color: #837EB1;
	background: #0D083B;
	display: block;
	border-radius: 50px;
	border: none;
	width: 320px;
	margin: 20px auto;
	padding: 10px;
	outline: none;
	cursor: pointer;
}

input[type=submit]:hover{
	background: #1F1959;
}

.alert{
	padding: 10px;
	border: 1px solid #ddd;
	background-color: tomato;
	color: #fff;
}

