:root {
	--background-color: #f7f9fd;
	--primary-color: #587ef3;
	--secundary-color: #ff5353;
	--textcolor: #363d55;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body {
	background-color: var(--background-color);
}
.container {
	width: 90vw;
	max-width: 62.5em;
	position: relative;
	margin: auto;
}
button {
	border: none;
	outline: none;
	cursor: pointer;
	color: #ffffff;
	padding: 0.8em 1.2em;
	font-weight: 500;
	border-radius: 100vw !important;
	font-size: 1em;
	box-shadow:0 5px #0005, 0 5px var(--buttoncolor, var(--primary-color));
	transition: box-shadow 100ms, transform 100ms;
}
input {
	border: none;
	outline: none;
}
button:active {
	box-shadow:0 0 #0005, 0 0 var(--buttoncolor, var(--primary-color));
	transform: translateY(5px) !important;
}
button:hover {
	transform: scale(1.01);
}
label {
	color: var(--primary-textcolor);
	font-weight: 600;
	margin-bottom: 0.3em;
}
textarea {
	width: 100%;
	padding: 0.7em 0.5em;
	border: 1px solid #d0d0d0;
	outline: none;
	color: #414a67;
	border-radius: 0.3em;
	resize: none;
}
textarea:not(:last-child) {
	margin-bottom: 1.3em;
}
textarea:focus {
	border-color: var(--textcolor);
}
.card {
	background-color: #ffffff;
	box-shadow: 0 0.4em 1.2em rgba(28, 0, 80, 0.08);
	padding: 1.2em;
	border-radius: 0.4em;
	position: absolute;
}
.hide {
	display: none;
}