@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');


.login_form
{
	background-color:rgba(140, 151, 192, 0.4);
	width:25%;
	height:300px;
	align-items: center;
	margin:auto;
	padding:70px ;
	border:25px;
	justify-content: center;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	border-radius: 5px;
	color:white;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .2);
}
h2
{
	text-align: center;
	font-size:28px;
	margin-bottom:20px;
	font-weight:500;
	opacity:1;
}
button 
{
	padding:10px 18px;
	font-size:15px;
	width:100%;
	border:none;
	border-radius:4px;
	background:darkgreen;
	color:#f4f4f4;
	justify-content: center;
	margin:auto;
	opacity:1;
}
button:hover
{
	background-color: orangered;
}
button:focus
{
	box-shadow:0px 0px 0px 3px black;
}
body {
	max-width: 100%;
	max-height: 100%;
	background-image:url('../images/image1.jpg');
	background-repeat: no-repeat;
	background-size: cover;

}
.inputs
{
	display:block;
	margin-bottom: 20px;
}
label
{
	display:block;
	font-size: 16px;
	margin-bottom: 8px;
	font-weight: 500;
}
.inputs input
{
	padding:10px 8px;
	width:100%;
	font-size:16px;
	border:none;
	background:#323131;
	color:#c7c7c7;
	border-radius: 4px;
	outline:none;
}
a
{
	display:block;
	font-size: 16px;
	margin-top: 8px;
	text-align: center;
	text-decoration: none;
	color: floralwhite;
}
