body {
	height: 100vh;
	background-image: url("background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #020A1B;
}
.login-div {
	display: grid;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

.login-section-div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	background-color: #f2f2f2;
	border-radius: 50px;
	margin: 100px;
}

.input-section {
	display: flex;
	width: 50%;
	justify-content: center;
	flex-direction: column;
	margin: 5px;
}

.input-div {
	justify-content: flex-start;
}
.input-div-inline {
	display: flex;
	flex-direction: row;
}

.submit-button-section {
	justify-content: flex-start;
	height: 30px;
	width: 100%;
	padding: 0px 10px 0px 10px;
}

.sign-in-button {
	width: 90%;
	height: 100%;
	border-radius: 10px;
	background-color: #4caf50;
	color: white;
	font-weight: bold;
}

.feedback-section {
	display: flex;
	width: 100%;
	margin: 5px;
}
.feedback {
	font-size: 14px;
	width: 100%;
	color: red;
}
.links-div {
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: row;
	margin: 60px 0px 5px 10px;
	font-size: 12px;
	color: #adadad;
}
.links-div a {
	font-size: 12px;
	color: #9a9a9a;
}
.links-div a:hover {
	font-size: 13px;
	color: #868686;
}
.links-div-left {
	width: 50%
	justify-content: flex-start;
	text-align: left;
}
.links-div-right {
	width: 50%;
	justify-content: flex-end;
	text-align: right;
}
