body{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.content-container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 1920px;
	flex-grow: 1;
}

.footer-container {
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #676768;
	flex-shrink: 0;
}

.content-container > .footer-container {
	margin-top: auto;
}

.br-line-85 {
	width: 85%;
	height: 2px;
	background-color: rgb(182, 182, 182);
}

.footer-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25%;
}

.href-remove-styles {
	color: white;
	text-decoration: none;
}

.footer-content-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	transition: 200ms ease-in-out;
}

.footer-content-item:hover{
	border-bottom: 1px solid white;
	transition: 200ms ease-in-out;
}

.footer-content-left {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 70px;
	height: 100%;
}

.footer-content-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.clickable {
	cursor: pointer;
}

.input-field {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 20%;
}

.input-field-label {
	min-width: 20px;
	border-bottom: 1px solid black;
	height: 100%;
	width: 8%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: #8BC34A;
}

.footer-content-left-stack{
	display: flex;
	flex-direction: row;
	gap: 15px;
	color: white;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.footer-content-left-stack-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	font-size: 14px;
	height: 100%;
}

body {
	padding: unset !important;
	margin: unset !important;
	font-family: "Open Sans", serif;
}

input[type="text"], input[type="password"] {
	font-family: "Open Sans", serif;
	border-top: unset;
	border-left: unset;
	border-right: unset;
	border-bottom: 1px solid black;
	outline: unset !important;
	height: 100%;
	padding: 0 10px 0 10px;
	font-size: 20px;
}

input[type="submit"] {
	border: 1px solid rgba(255, 255, 255, 0);
	font-family: "Open Sans", serif;
	border-radius: 100px;
	background-color: rgba(244, 120, 37, 1);
	color: white;
	height: 100%;
	width: 95%;
	font-weight: bold;
	transition: 0.5s ease-in-out;
	margin-top: 50px;
	min-height: 60px;
}

input[type="submit"]:hover {
	background-color: #c05b04;
	transition: 0.5s ease-in-out;
}

@media only screen and (max-aspect-ratio: 1) {
	.footer-container {
		flex-direction: column;
		height: 150px !important;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-content-left {
		gap: 25px;
		padding: 5px;
		margin: unset;
	}

	.footer-content-right {
		flex-direction: column;
		gap: 5px;
		margin: unset;
	}

	.top-nav-bar-title {
		font-size: 22px !important;
	}
	.input-field-label{
		width: 10%;
	}
}

.arrow {
	width: 120px;
	display: flex;
}

.line {
	margin-top: 13px;
	width: 100px;
	background: rgba(244, 120, 37, 1);
	height: 5px;
	float: left;
}

.point {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid rgba(244, 120, 37, 1);
	float: right;
}

.blur-overlay{
	position: absolute;
	top: 0;
	height: 66%;
	width: 100%;
	filter: blur(10px);
}