:root {
	--primary-color: #00aeef;
	--secondary-color: #1566bb;
}
* {
	box-sizing: border-box;
}

body,
input,
textarea,
button {
	font-family: "Inter", sans-serif;
	line-height: 1.4;
}

body {
	margin: 0;
	background: linear-gradient(135deg, #fdfbfb, #ebedee);
	color: #2a2a2a;
}

a {
	color: var(--primary-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}

.hero {
	background: linear-gradient(135deg, #c9e4de, #f1f4f8);
	padding: 5rem 2rem;
	text-align: center;
	animation: fadeInUp 1s ease-out;

	form {
		max-width: 600px;
		margin: auto;
		padding: 3rem;
		background-color: #fff;
		border-radius: 0.5rem;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

		> div {
			display: flex;
			justify-content: center;
			gap: 1rem;
			margin-bottom: 1rem;
		}
	}

	input {
		width: 100%;;
		font-size: 1.125rem;
		border: 1px solid #0002;
		border-radius: 0.5rem;
		background-color: #fff;
		padding: 0.75rem 1rem;
		transition: all 0.3s ease;

		&:focus {
			outline: none;
			border-color: var(--primary-color);
			box-shadow: 0 0 1rem var(--primary-color);
		}
	}

	h3 {
		font-weight: 400;
	}

	.error {
		color: #eb443f;
	}
	
	.note {
		font-size: .8em;
		font-style: italic;
	}
}

.welcome {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;

	img {
		width: auto;
		height: 32px;
	}
}

.logo {
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 1.25;

	a {
		text-align: left;
		text-decoration: none;
		color: #000;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		transition: filter 0.3s ease;

		&:hover {
			filter: drop-shadow(0 0.25rem 0.5rem var(--accent-color));
		}
	}

	img,
	strong,
	small {
		display: block;
	}
}

h1,
h2 {
	color: #1e1e1e;
	margin-bottom: 1rem;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.btn-primary {
	border: 0 none;
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.3s ease;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--secondary-color);
}

.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background: #f7f9fb;
	padding: 4rem 2rem;
}

.feature {
	flex: 0 1 300px;
	padding: 2rem;
	text-align: center;
}

.feature i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.about {
	max-width: 800px;
	margin: auto;
	padding: 4rem 2rem;
	background: #edf6f9;
}

.about ul {
	list-style: none;
	padding: 0;
}

.about li {
	margin: 0.5rem 0;
	font-size: 1.1rem;
}

.about li i {
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.cta {
	background: linear-gradient(135deg, #f6e1e1, #dbe4f0);
	padding: 4rem 2rem;
}

.footer {
	background: #2a2a2a;
	color: #ffffff;
	padding: 2rem;
	text-align: center;
}

.steps {
	background: #ffffff;
	padding: 4rem 2rem;

	.container {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
		flex-wrap: wrap;
		text-align: center;
	}
}

.step {
	flex: 1 1 280px;
	padding: 2rem;
	background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	animation: fadeInUp 0.8s ease-out forwards;
}

.step i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	display: block;
}

.step h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

/* Animation */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.features {
		flex-direction: column;
		align-items: center;
	}

	.steps {
		flex-direction: column;
		align-items: center;
	}
}