body,
html {
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
		Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	--color-primary: #5e50fb;
	--color-primary-dark: #372ac4;
	--color-border: #e0e0e0;
	--border-radius: 6px;
	font-size: 16px;

	/* scroll-snap-type: y mandatory; */
}

* {
	box-sizing: border-box;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
		Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

button {
	font-size: 16px;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-border);
	background: var(--color-primary);
	border-radius: 5px;
	color: white;
	transition: all 0.25s ease;
	cursor: pointer;
	animation: slide-in 0.25s ease;
	width: max-content;
}

@keyframes slide-in {
	0% {
		opacity: 0;
		transform: translateX(-10%);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

button:hover {
	background: var(--color-primary-dark);
}

button.secondary {
	background: white;
	color: black;
}

button.secondary:hover {
	background: var(--color-border);
}

button:disabled {
	opacity: 0;
	cursor: not-allowed;
	animation: unset;
}
input {
	flex: 1;
	padding: 0.5rem 0.5rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	height: 40px;
	font-size: var(--font-size, 16px);
	/* min-width: 400px; */
}
input:focus {
	outline: 1px solid var(--color-primary);
	border: 1px solid var(--color-primary);
}

h2,
h3 {
	font-weight: 700;
	margin: 0;
}

h2 {
	font-size: var(--font-size, 16px);
}
h2 span {
	font-weight: 400;
}
h3 {
	font-size: 0.9rem;
	font-weight: 400;
	padding-top: 0.3rem;
}

.substepContainer {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	gap: 0.5rem;
}

.substep {
	width: 100%;
	display: flex;
	gap: 0.5rem;
	flex-flow: column;
	position: relative;
}

.substepTitle {
	width: 160px;
	max-width: 200px;
	/* padding-top: calc(var(--font-size, 16px) * 0.7); */
	display: flex;
}

.bottom {
	width: 100%;
	display: flex;
	position: absolute;
	justify-content: flex-end;
	bottom: -42px;
}
