* {
  box-sizing: border-box;
}

html[data-theme='dark'] [id$="Icon"]:not(.noinvert){
	filter: invert(1);
}

html[data-theme='dark'] [class$="Icon"]:not(.noinvert){
	filter: invert(1);
}

body{
	margin: 0;
	font-family: 'Oxanium', serif;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #121212;
	color: #fff;
	overflow: hidden;
}

a{
	text-decoration: none;
	color: #999;
}

a:hover{
	color: #cdcdcd;
}

.link{
	cursor: pointer;
	text-decoration: none;
	color: #fff;
}

.link:hover{
	color: #f55;
}

::selection{
	background: #a90000;
}

input::selection{
	background: #a90000;
}

textarea::selection{
	background: #a90000;
}

form{
	display: unset;
	margin: 0;
	margin-block-end: 0;
}

/* width */
::-webkit-scrollbar{
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track{
  background: #dbdbdb;
}

/* Handle */
::-webkit-scrollbar-thumb{
  background: #424242;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
  background: #161616;
}

.button{
	padding: 4px 16px;
	border-radius: 2px;
	box-shadow: black 1px 3px 3px;
	color: white;
	cursor: pointer;
	background-image: linear-gradient(0deg,#280000,#e11515);
	width: fit-content;
	text-shadow: black 1px 1px;
}

.button:hover{
	background-image: linear-gradient(0deg,#d70000,#9b0000);
}

.TextBox{
	font-size: 14pt;
	padding: 2px 4px;
	border: black solid 1px;
	outline: none;
	font-family: inherit;
}

.TextBox:focus{
	border: blue solid 1px;
}

.OverlayContainer{
	position: absolute;
	z-index: 100000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #0009;
	backdrop-filter: blur(4px);
}

.OverlayInnerContainer{
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.OverlayContentContainer{
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
	box-shadow: black 2px 2px 8px;
}

.OverlayLogo{
	height: 200px;
}

.OverlayHeader{
	font-size: 18pt;
	padding-bottom: 10px;
}

.OverlayText{
	padding-bottom: 20px;
	text-align: center;
}

.OverlayButtonContainer{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
}

.ContentContainer{
	min-height: 100vh;
}

.TextBoxConstraint{
	margin-top: 4px;
	display: flex;
	align-items: center;
}

.BoxContainer{
	border: black solid 2px;
	padding: 6px;
}

.ActiveTab{
	color: #e91e63;
	text-shadow: black 1px 1px 1px;
}

.Tab{
	color: #8a2be2;
	text-shadow: black 1px 1px 1px;
}

.Tab:hover{
	color: #f4f;
	cursor: pointer;
}

.NewTextBox{
	width: -webkit-fill-available;
	font-size: 14pt;
	padding: 4px;
	border-radius: 10px;
	border: black solid 1px;
	outline: none;
}

.NewTextArea{
	min-height: 50px;
	min-width: 500px;
	max-height: 400px;
	max-width: 500px;
	width: 500px;
	height: 50px;
	font-size: 14pt;
	border: black solid 1px;
	outline: none;
}


/* Footer */

.Footer{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: black;
}

.FooterLeft{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.FooterRight{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.TermsContainer{
	padding: 100px;
	color: #ddd;
	background-color: #3d233e;
	flex-grow: 1;
}

/* Email Stuff */

.EmailVerifyContainer{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.EmailVeirfyMessage{
	padding: 20px;
}

.EmailVeirfyOutcome{
	
}

.EmailResetSendButton{
	margin: 0 auto;
}

.ResetPasswordButton{
	margin: 0 auto;
}

@media (orientation: portrait), (max-width: 800px) {

	
}