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

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

* {
	box-sizing: border-box;
}

/* Typography styles */
body {
	font-family: 'Inter', sans-serif !important;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1.25rem !important;
	font-weight: 600;
}

.body-text {
	font-size: 1rem;
}

.tab-text {
	font-size: 0.875rem;
}

.tab-color {
	color: #A1A1A9;
}

.small-text, label {
	font-size: 0.75rem;
}

.primary-button {
	width: 120px;
	padding: 10px 30px;
	border-radius: 25px;
	background-color: #5425AF;
	align-self: center;
	background: linear-gradient(180deg, #845eee 0%, #652cd1 100%);
}

/* Add some styles for body*/
body {
	min-height: 100vh;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #121826;
	background-image: url('../images/blur-radial.png');
	background-repeat: no-repeat;
	background-position: 30% 25%;
}

main {
	height: 100%;
	max-width: 475px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 0.5rem;
	column-gap: 1.5rem;
}

form {
	max-width: 475px;
	width: 100%;
}

.wrapper {
	max-width: 475px;
	width: 100%;
	padding: 1px;
	border-radius: 10px;
	background: linear-gradient(
		120deg,
		rgba(229, 231, 235, 0.5) 0.05%,
		rgba(229, 231, 235, 0) 25.05%
	);
}

.step {
	max-width: 475px;
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	color: #E5E7EB !important;
	display: flex;
	flex-direction: column;
	gap: 30px;
	background-color: #212936;
}
.step1 {
	height: 360px;
}
.step2 {
	height: 375px;
}
.step3 {
	height: 350px;
}


input {
	padding: 10px !important;
	border-radius: 10px;
	color: #E5E7EB !important;
	border: 1px solid #4D5562;
	background-color: #212936;
}
input::placeholder {
	color: #E5E7EB !important;
	opacity: 1;
}
input::-webkit-input-placeholder {
	color: #E5E7EB !important;
}

.topic-option {
	width: 100%;
	padding: 10px;
	border: 1px solid #4D5562;
	border-radius: 10px;
	background-color: #212936;
	color: #E5E7EB;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.topic-option:hover {
	border-color: #845EEE;
}

.topic-option.selected {
	background-color: #5425AF;
	border-color: #845EEE;
}

.summary-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.summary-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.topic-list {
	list-style-type: disc;
	padding-left: 20px;
	color: #E5E7EB;
}

.topic-list li {
	font-size: 0.875rem;
}

.steps-description {
	color: #A1A1A9;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	gap: 2rem;
}

.step-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #212936;
	transition: background-color 0.3s ease;
}

.step-dot.active {
	background-color: #5425AF;
}

@media screen and (max-width: 375px) {
	.step {
		padding: 40px 20px;
	}
}