.ebk-form {
	max-width: 720px;
	margin: 0 auto;
	font-size: 15px;
}

.ebk-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}

.ebk-progress__step {
	flex: 1;
	text-align: center;
	padding: 8px 0;
	border-bottom: 3px solid #ddd;
	color: #999;
}

.ebk-progress__step.is-active {
	border-color: #2271b1;
	color: #2271b1;
	font-weight: bold;
}

.ebk-step {
	display: none;
}

.ebk-step.is-active {
	display: block;
}

.ebk-field {
	margin-bottom: 16px;
}

.ebk-field--half {
	display: inline-block;
	width: 48%;
	margin-right: 2%;
}

.ebk-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.ebk-field input[type='text'],
.ebk-field input[type='email'],
.ebk-field select,
.ebk-field textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.ebk-field textarea {
	min-height: 80px;
}

.ebk-radio,
.ebk-checkbox {
	display: block;
	font-weight: normal;
	margin-bottom: 6px;
}

.ebk-field-error {
	display: block;
	color: #c0392b;
	font-size: 13px;
	margin-top: 4px;
}

.ebk-alert {
	padding: 10px 14px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.ebk-alert--error {
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}

.ebk-btn {
	padding: 10px 20px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #f5f5f5;
	cursor: pointer;
	margin-right: 8px;
}

.ebk-btn--primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.ebk-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
