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

.alp-form-wrapper {
	max-width: 560px;
	margin: 0 auto;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.alp-form-wrapper .alp-form {
	background: #ffffff;
	border: 1px solid #e9ebe8;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(20, 20, 20, 0.04), 0 8px 24px rgba(20, 20, 20, 0.05);
}

.alp-form-wrapper .alp-progress {
	margin-bottom: 24px;
}
.alp-form-wrapper .alp-progress-bar {
	width: 100%;
	height: 6px;
	background: #eef1ee;
	border-radius: 999px;
	overflow: hidden;
}
.alp-form-wrapper .alp-progress-fill {
	height: 100%;
	width: 0%;
	background: #00C170;
	border-radius: 999px;
	transition: width 0.3s ease;
}
.alp-form-wrapper .alp-progress-label {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
	color: #8a8f89;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.alp-form-wrapper .alp-step-title {
	margin: 0 0 20px;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #141613;
}

.alp-form-wrapper .alp-field {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.alp-form-wrapper label {
	font-size: 13px;
	font-weight: 600;
	color: #3a3d39;
	letter-spacing: 0.01em;
}

.alp-form-wrapper input[type="text"],
.alp-form-wrapper textarea,
.alp-form-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	background: #f7f8f6;
	border: 1.5px solid #e5e7e3;
	border-radius: 10px;
	padding: 13px 14px;
	font-size: 14.5px;
	font-family: inherit;
	color: #141613;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.alp-form-wrapper input[type="text"]::placeholder,
.alp-form-wrapper textarea::placeholder {
	color: #a3a79f;
}

.alp-form-wrapper input[type="text"]:hover,
.alp-form-wrapper textarea:hover,
.alp-form-wrapper select:hover {
	border-color: #d3d6cf;
}

.alp-form-wrapper input[type="text"]:focus,
.alp-form-wrapper textarea:focus,
.alp-form-wrapper select:focus {
	outline: none;
	background: #ffffff;
	border-color: #00C170;
	box-shadow: 0 0 0 3px rgba(0, 193, 112, 0.14);
}

.alp-form-wrapper select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}

.alp-form-wrapper textarea {
	resize: vertical;
	min-height: 96px;
	line-height: 1.5;
}

.alp-form-wrapper .alp-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
	font-size: 13.5px;
	color: #3a3d39;
	line-height: 1.4;
	cursor: pointer;
}

.alp-form-wrapper .alp-checkbox-label input {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: #00C170;
	cursor: pointer;
	flex-shrink: 0;
}

.alp-form-wrapper .alp-nav {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.alp-form-wrapper button {
	font-family: inherit;
	border: none;
	border-radius: 10px;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.05s ease;
}

.alp-form-wrapper .alp-next,
.alp-form-wrapper .alp-submit {
	flex: 1;
	background: #00C170;
	color: #ffffff;
	padding: 13px 22px;
}
.alp-form-wrapper .alp-next:hover,
.alp-form-wrapper .alp-submit:hover {
	background: #00a862;
}
.alp-form-wrapper .alp-next:active,
.alp-form-wrapper .alp-submit:active {
	transform: scale(0.98);
}

.alp-form-wrapper .alp-prev {
	background: #f2f3f0;
	color: #3a3d39;
	padding: 13px 20px;
}
.alp-form-wrapper .alp-prev:hover {
	background: #e9ebe6;
}

.alp-form-wrapper button:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

.alp-form-wrapper .alp-message {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
.alp-form-wrapper .alp-message-success {
	color: #0a7a3c;
}
.alp-form-wrapper .alp-message-error {
	color: #c0392b;
}

@media (max-width: 480px) {
	.alp-form-wrapper .alp-form {
		padding: 22px;
		border-radius: 12px;
	}
	.alp-form-wrapper .alp-nav {
		flex-direction: column-reverse;
	}
}
