@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

:root {
	--theme-font-family: "Noto Sans", Arial, sans-serif;
	--theme-font-family-bold: var(--theme-font-family);
	--theme-font-family-light: var(--theme-font-family);
}

* {
	font-family: var(--theme-font-family);
}

section.next {
	padding: 20px ;
}

hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px dashed #c5c5c5;
	border-bottom: 1px dashed #f7f7f7;
}

.error {
	color: #b83f45;
	font-weight: bold;
	padding: 10px;
}

.success {
	color: #3fb84d;
	font-weight: bold;
	padding: 10px;
}