/* EBCS Platform — public registration + status styles.
   Reuses the theme's .form-group / .btn / .alert language and adds the
   wizard-specific pieces. */

.ebcs-reg, .ebcs-status { max-width: 640px; margin: 40px auto; padding: 0 16px; }
.ebcs-reg__card, .ebcs-status {
	background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 28px;
}
.ebcs-reg__title { color: #132a60; font-size: 1.6rem; margin: 0 0 20px; }

/* Step indicator */
.ebcs-steps { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0 0 24px; padding: 0; flex-wrap: wrap; }
.ebcs-steps li { display: flex; align-items: center; gap: 8px; color: #9aa0a6; font-weight: 600; font-size: .9rem; }
.ebcs-steps li span {
	width: 26px; height: 26px; border-radius: 50%; background: #e0e0e0; color: #fff;
	display: inline-flex; align-items: center; justify-content: center; font-size: .85rem;
}
.ebcs-steps li.is-active { color: #132a60; }
.ebcs-steps li.is-active span { background: #132a60; }
.ebcs-steps li.is-done span { background: #93c5c6; }

.ebcs-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .ebcs-grid-2 { grid-template-columns: 1fr; } }
.ebcs-opt { color: #9aa0a6; font-weight: 400; font-size: .8rem; }

.ebcs-reg__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.ebcs-reg__signin { text-align: center; color: #666; margin-top: 18px; font-size: .9rem; }
.ebcs-reg__signin a { color: var(--accent-dark, #437576); font-weight: 600; }

/* Postcode + club */
.ebcs-postcode-row { display: flex; gap: 8px; }
.ebcs-postcode-row input { flex: 1; }
.ebcs-club { position: relative; }
.ebcs-club__list {
	list-style: none; margin: 4px 0 0; padding: 0; position: absolute; z-index: 5; left: 0; right: 0;
	background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.08);
	max-height: 220px; overflow: auto; display: none;
}
.ebcs-club__list li { padding: 9px 12px; cursor: pointer; font-size: .92rem; }
.ebcs-club__list li:hover { background: #f4f7fb; }
.ebcs-club__list li small { color: #9aa0a6; }

/* Yes / No choice ("Are you already a coach?") */
.ebcs-yesno { display: flex; gap: 12px; }
.ebcs-yesno__opt {
	flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
	border: 1px solid #e0e0e0; border-radius: 6px; padding: 10px 14px; cursor: pointer;
	font-weight: 600; color: #333;
}
.ebcs-yesno__opt:has(input:checked) { border-color: #132a60; background: #f4f7fb; color: #132a60; }

/* Scrollable Terms & Conditions */
.ebcs-terms {
	max-height: 180px; overflow-y: auto; border: 1px solid #e0e0e0; border-radius: 6px;
	padding: 14px 16px; background: #fafbfd; font-size: .85rem; line-height: 1.65; color: #444;
}
.ebcs-terms p { margin: 0 0 12px; }
.ebcs-terms p:last-child { margin-bottom: 0; }

/* Summary */
.ebcs-summary { background: #f4f7fb; border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.ebcs-summary h3 { margin: 0 0 10px; color: #132a60; }
.ebcs-summary__row { display: flex; justify-content: space-between; font-size: 1.05rem; }
.ebcs-prepaid { display: block; margin: 14px 0; }

/* Success */
.ebcs-reg__success { text-align: center; padding: 16px; }
.ebcs-reg__tick {
	width: 64px; height: 64px; border-radius: 50%; background: #132a60; color: #fff;
	font-size: 34px; line-height: 64px; margin: 0 auto 16px;
}
.ebcs-reg__success h2 { color: #132a60; margin: 0 0 10px; }
.ebcs-reg__number { font-size: 1.05rem; }

/* Status pills */
.ebcs-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-weight: 600; font-size: .85rem; }
.ebcs-pill--green { background: #dcfce7; color: #15803d; }
.ebcs-pill--amber { background: #fff4e0; color: #b8860b; }
.ebcs-pill--red   { background: #fce9e9; color: #c0392b; }

/* Button + alert variants the theme doesn't already define */
.btn--teal  { background: #93c5c6; color: #fff; }
.btn--ghost { background: #fff; color: #132a60; border: 1px solid #132a60; }
.alert--teal  { background: #f0f8f8; border: 1px solid #93c5c6; color: #3c6f70; padding: 10px 12px; border-radius: 6px; margin: 10px 0; }
.alert--amber { background: #fff8e1; border: 1px solid #ffd23f; color: #8a6d00; padding: 10px 12px; border-radius: 6px; margin: 10px 0; }

/* Login remember-me warning */
.ebcs-remember-note { font-size: .78rem; color: #b8860b; margin: -8px 0 14px; }
