/** global.css - Global style */

:root {
	--bg: #f5f8f9;
	--be-green: #58a618;
	--blue: #172d43;
	--grey-light: #ececec;
	--muted: #ababab;
	--placeholder: #757575;
}

*,
*:before,
*:after { 
	box-sizing: border-box;
	user-select: none;
}

::selection {
	color: var(--bg);
	background-color: var(--blue); 
}

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

body {
	background-color: var(--bg);
	color: var(--blue);
	margin: 0;
	font-size: 16px;
	overflow-x: hidden;
	scrollbar-width: none; /* for Firefox */
	overflow-y: scroll;
}

body::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	outline: none;
}