@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--green-color: #1d701f;
}

*,
*::before,
*::after
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #270591;
	font-family: "Roboto", sans-serif;
}

.title {
	margin-bottom: 20px;
}

.card {
	background-color: #fff;
	border-radius: 15px;
	max-width: 80%;
	width: 100%;

	padding: 40px;
}

.center {
	margin: 0 auto;
}

.step-description {
	min-height: 100px;
	font-size: 20px;
	line-height: 1.2;
}

.list-steps {
	list-style-type: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;

	margin: 40px 0;
}

.step-button {
	background-color: transparent;
	border: none;
	outline: none;

	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;

	cursor: pointer;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 10px;

	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #ccc;
	color: #000;
	border: 1px solid transparent;

	transition: background-color .3s, color .3s, border-color .3s;
}

.step-button.active .step-number {
	background-color: var(--green-color);
	color: #fff;
}

.step-button.done .step-number {
	background-color: var(--green-color);
	color: #000;
	border: 1px solid #000;
}

.step-title {
	color: #000;
}

.buttons {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

.nav-button {
	display: block;
	background-color: transparent;
	border: 1px solid var(--green-color);
	outline: none;
	border-radius: 10px;
	color: var(--green-color);
	cursor: pointer;
	font-size: 14px;
	user-select: none;

	padding: 8px 20px;

	transition: opacity .3s, color .3s, background-color .3s;
}
.nav-button.primary {
	color: #fff;
	background-color: var(--green-color);
}
.nav-button:disabled {
	cursor: not-allowed;
	opacity: 0.4;
}