*{
	transition: .2s ease;
	font-family: "Inter", sans-serif;
}
body{
	margin: 0;
	padding: 0;
}

#root{
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: auto;
}

#root .index{
	display: flex;
	flex-direction: column;
	height: 100vh;
	align-items: center;
	justify-content: center;
}
#root .index img{
	width: 6vw;
}
#root .index h1{
	margin: 0;
	margin-top: 1.5vw;
	margin-bottom: 0.5vw;
	color: darkgrey;
}
#root .index h1 b{
	color: black;
	font-weight: bold;
}
#root .index small{
	color: grey;
}

/* ===================== DASHBOARD NOTIFICATION BANNER ===================== */
#master #notification-banner{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	margin-top: 3vw;
	margin-right: 1vw;
	padding: 0.5vw;
	height: auto;
	display: flex;
	align-items: center;
	gap: 0.5vw;
	background: #454545;
	border-radius: 0.5vw;
	color: white;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 0px 12px rgba(154, 153, 150, 0.06);
}
#master .notification-visible{
	opacity: 1 !important;
	visibility: visible !important;
}
#master #notification-banner .notification-indicator{
	font-size: 1.2vw;
}
#master #notification-banner .notification-details{
	display: flex;
	flex-direction: column;
	min-width: 10vw;
}
#master #notification-banner .notification-details span{
	font-size: 0.8vw;
}
#master #notification-banner .notification-details small{
	margin-top: 0.2vw;
	font-size: 0.7vw;
	color: darkgrey;
}
#master #notification-banner button{
	border: none;
	color: white;
	background: none;
	font-size: 0.8vw;
	cursor: pointer;
}
/* ===================== DASHBOARD NOTIFICATION BANNER ===================== */

/* Authorization Route */
#root .auth-root{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: calc(100vh - 8vh);
	padding: 4vh 0;
	width: 100vw;
	background: #191919;
}
#root .auth-root img{
	height: 1vw;
}
#root .auth-root form{
	margin-top: auto;
	color: white;
	display: flex;
	flex-direction: column;
	width: 16vw;
}
#root .auth-root form h1{
	font-weight: bold;
	font-size: 1.5vw;
	margin: 0;
	margin-bottom: 1.5vw;
	text-align: center;
}
#root .auth-root form input{
	width: calc(100% - 1vw);
	padding: 0.5vw;
	border: 1px solid #313338;
	border-radius: 0.5vw;
	background: transparent;
	margin-bottom: 0.5vw;
	color: white;
	font-size: 0.7vw;
}
#root .auth-root form input:focus{
	outline: none;
	border-color: grey;
}
#root .auth-root form font{
	margin-bottom: 0.5vw;
	font-size: 0.7vw;
	font-weight: bold;
	text-align: left;
	color: #B00020;
}
#root .auth-root form button{
	width: 100%;
	padding: 0.5vw;
	border: none;
	border-radius: 0.5vw;
	font-size: 0.7vw;
	font-weight: bold;
	background: white;
	cursor: pointer;
}
#root .auth-root form button:hover{
	background: #CCC;
}
#root .auth-root .auth-footer{
	width: 20vw;
	margin-top: auto;
	color: white;
	text-align: center;
}
#root .auth-root .auth-footer span{
	font-size: small;
	opacity: .7;
}
#root .auth-root .auth-footer span a{
	color: white;
}
#root .auth-root .auth-footer .auth-footer-meta{
	margin: 0 auto;
	margin-top: 1.5vw;
	display: flex;
	gap: 1vw;
	width: fit-content;
}
/* Authorization Route */

/* Privacy Policy Route */
#root .policy-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 5vw;
}
#root .policy-container img{
	width: 8vw;
}
#root .policy-container h1{
	font-size: 2vw;
	font-weight: normal;
	margin: 0;
	margin-top: 1vw;
	margin-bottom: 4vw;
}
#root .policy-container section{
	width: 50vw;
	display: flex;
	flex-direction: column;
	justify-content: start;
}
#root .policy-container h3{
	color: grey;
}
#root .policy-container ol li{
	margin-bottom: 1vw;
}
#root .policy-container ol li p{
	text-align: justify;
	line-height: 1.25vw;
	margin: 0;
	margin-top: 0.5vw;
}
#root .policy-container ol li ul{
	list-style: square;
}
#root .policy-container ol li ul li{
	margin-top: 0.5vw;
}
/* Privacy Policy Route */