@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Merriweather+Sans:wght@300;800&family=Orbitron&display=swap');

body {
	background: #3d3d3d;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

* {
	font-family: 'Merriweather Sans';
	box-sizing: border-box;
}

#logo-img {
	width: 400px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 120px;
	margin-bottom: 80px;
}

form {
	width: 500px;
	/*border: 2px solid #ccc;*/
	padding: 30px;
	background: rgb(46, 46, 46);
	border-radius: 15px;
	/*box-shadow: 5px 5px 5px rgb(94, 94, 94);*/
}

h2 {
	text-align: center;
	margin-bottom: 40px;
	font-family: 'Merriweather Sans';
	color: #c2c2c2;
	font-size: 40px;
}

input {
	display: block;
	border: 2px solid #ccc;
	width: 95%;
	padding: 10px;
	margin: 10px auto;
	border-radius: 5px;
}

label {
	color: #c2c2c2;
	font-size: 18px;
	padding: 10px;
}

/*button {
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
	cursor: pointer;
}*/
button {
	float: right;
	width: auto;
	height: auto;
	/*background-color: rgb(172, 172, 172);*/
	background-color: #3d3d3d;
	font-size: 18px;
	border: 0px;
	padding: 10px;
	color: white;
	cursor: pointer;
	border-radius: 5px;

}

button:hover {
	opacity: .7;
	transition: 0.3s;
	background: grey;
}

.error {
	background: #f2aeae;
	color: #A94442;
	padding: 10px;
	width: 95%;
	border-radius: 5px;
	margin: 20px auto;
}

h1 { 
	text-align: center;
	color: #fff;
}

a {
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
	text-decoration: none;
}

a:hover {
	opacity: .7;
}

.navbar {
	/*width: 100%;*/
	width: 100vw;
	height: 60px;
	background: rgb(185, 185, 185);
	position: fixed;
	top: 0;
	box-shadow: 5px 5px 5px rgb(94, 94, 94);
}

.icon1 {
	float: right;
	background: transparent;
}

.icon2 {
	float: right;
	background: transparent;
}

.heading {
	position: absolute;
	margin-left: 40px;
	font-size: 20px;
}

.copy {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
	color: #c2c2c2;
    transform: translate(-50%);
}
