html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	background-color: #121212;
	color: #fff;
	margin: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

input {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-variant: tabular-nums;
	list-style: none;
	font-feature-settings: tnum;
	position: relative;
	display: inline-block;
	width: 100%;
	min-width: 0;
	padding: 4px 11px;
	color: rgba(255,255,255,0.65);
	font-size: 0.875rem;
	line-height: 1.5715;
	background-color: transparent;
	background-image: none;
	border: 1px solid #434343;
	border-radius: 2px;
	transition: all .3s;
}

input[type="radio"] {
	min-width: 13px;
}

input:focus {
	border-color: #177ddc;
	border-right-width: 1px !important;
	outline: 0;
	box-shadow: 0 0 0 2px rgba(23,125,220,0.2);
}

input::selection {
	background: #177ddc;
	color: white;
}

textarea {
	max-width: 100%;
	height: auto;
	min-height: 32px;
	line-height: 1.5715;
	vertical-align: bottom;
	transition: all .3s,height 0s;
	resize: vertical;

	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-variant: tabular-nums;
	list-style: none;
	font-feature-settings: tnum;
	position: relative;
	display: inline-block;
	width: 100%;
	min-width: 0;
	padding: 4px 11px;
	color: rgba(255,255,255,0.65);
	font-size: 0.875rem;
	line-height: 1.5715;
	background-color: transparent;
	background-image: none;
	border: 1px solid #434343;
	border-radius: 2px;
	transition: all .3s;
}

textarea:focus {
	border-color: #177ddc;
	border-right-width: 1px !important;
	outline: 0;
	box-shadow: 0 0 0 2px rgba(23,125,220,0.2);
}

textarea::selection {
	background: #177ddc;
	color: white;
}

select {
	height: 32px;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-variant: tabular-nums;
	list-style: none;
	font-feature-settings: tnum;
	position: relative;
	display: inline-block;
	width: 100%;
	min-width: 0;
	padding: 4px 11px;
	color: rgba(255,255,255,0.65);
	font-size: 0.875rem;
	line-height: 1.5715;
	background-color: transparent;
	background-image: none;
	border: 1px solid #434343;
	border-radius: 2px;
	transition: all .3s;
}

select:focus {
	border-color: #177ddc;
	border-right-width: 1px !important;
	outline: 0;
	box-shadow: 0 0 0 2px rgba(23,125,220,0.2);
}