
body {
		font-family: "Roboto","Arial";
		background-color: #FFDAB9;
		display:flex;
		align-items: center;
		justify-content: center;

}	
.login{
	background-color: #0b132b;
	width: 400px;
	color: #f8f9fa;
	padding: 40px;
	box-shadow: 10px 10px 25px #00000080;
	text-align: center;

}	

.login input{
	display: block;
	margin: 20px auto;
	text-align: center;
	background:none;
	padding: 15px;
	font-size: 15px;
	border-radius:22px;
	outline:none;
	color:#f8f9fa;
}

.login input[type="text"],.login input[type="password"]{
	border: 2px solid #3498db;
	width: 220px;
}

.login input[type="button"]{
	width:150px;
	border: 2px solid #2ecc71;
	cursor:pointer;
}
.login input[type="button"]:hover{

	background-color:#2ecc71;
}

