
* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
}
html * {
	width:100%;
	height:100%;
	margin:0;
}

.login {
  	width: 400px;
  	/*background-color: #fbfffa;*/
	background-color: transparent;
	animation-duration: 2s;
	animation-name: rotatey;
	margin-left:25%;
	margin-top:5%;
	height:auto;
	text-align:center;
	display:inline-block;
	flex-direction: row;
	justify-items: center;
	box-shadow:4px 4px 12px black;
}


.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 10px 0 10px 0;
	
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display:inline-flex;
  	flex-wrap: wrap;
  	justify-content: center;
	flex-direction: row;
	margin-top:2%;
}
.login form label {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	min-width: 50px;
	padding-top:10px;
  	height: 50px;
  	background-color: #0151ff;
	font-size:18px;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 330px;
  	height: 35px;
	margin-top:2px;
  	border: 1px solid #27f576;
  	margin-bottom: 4px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 5px;
 	margin-top: 5px;
  	background-color: #0151ff;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
	font-size:20px;
  	color: #ffffff;
	
  	
}
.login form input[type="submit"]:hover {
	background-color: #0151ff;
  	transition: background-color 0.2s;
	color: #FF0000;
	cursor: pointer;
}

.login h1 {
	background-color: #0151ff;
    font-family: 'Tangerine', serif;
	text-shadow: 4px 4px 4px lightgreen;
	font-weight:400;
	color:rgb(253, 253, 253);
	font-size:36px;	
}

.login img {
	width:48px;
}
@keyframes rotatey {
	0% {
		transform: rotateY(90deg);
	}
	100% {
		transform: rotateY(0deg);
	}
  }
  /*#08CC0A*/