@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #FFF;
	font-family: var(--font-body);
	border: inherit;
	border-color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: 'Outfit', sans-serif;
}

*:focus {
    outline: none;
	border: inherit;
	border-color: inherit;
	-webkit-box-shadow: none;
	box-shadow: none;
}

html {
	background-color: #343434;
	font-size: 16px;
}

form {
	margin-top: 2rem;
	max-width: 28rem;
	display: flex;
	flex-direction: column;
}

label {
	margin-top: 16px;
	margin-bottom: 8px;
}	

input, select {
	color: #000;
	padding: 8px;
	border-radius: 20px;
}

button {
	margin-top: 1rem;
}

.tool {
	background-color: #9593ff;
	display: inline-block;
	width: auto;
	padding: 2rem;
	border-radius: 2rem;
}

.tool.danger {
	background-color: #ffa39b;
}