/* ─── COFED Access Form ──────────────────────────────────────────────────── */

.cofed-access-form {
	max-width: 640px;
	margin: 0 auto;
}

.cofed-access-form__intro {
	background: #f0f4ff;
	border-left: 4px solid #1e3a6e;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: #333;
	border-radius: 0 4px 4px 0;
}

.cofed-access-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.cofed-access-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.25rem;
}

.cofed-access-form__field label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1a1a2e;
}

.cofed-access-form__field input,
.cofed-access-form__field textarea {
	border: 1.5px solid #d1d5db;
	border-radius: 4px;
	padding: 0.6rem 0.75rem;
	font-size: 0.9rem;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}

.cofed-access-form__field input:focus,
.cofed-access-form__field textarea:focus {
	outline: none;
	border-color: #1e3a6e;
	box-shadow: 0 0 0 3px rgba(30, 58, 110, 0.12);
}

.cofed-access-form__hint {
	font-size: 0.78rem;
	color: #6b7280;
}

.cofed-access-form__submit {
	margin-top: 0.5rem;
}

/* Feedback messages */
.cofed-access-form__feedback {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	font-size: 0.875rem;
	display: none;
}

.cofed-access-form__feedback--success {
	display: block;
	background: #f0fdf4;
	border: 1.5px solid #16a34a;
	color: #15803d;
}

.cofed-access-form__feedback--error {
	display: block;
	background: #fef2f2;
	border: 1.5px solid #dc2626;
	color: #b91c1c;
}

.cofed-access-form__feedback--loading {
	display: block;
	color: #6b7280;
	border: none;
	padding-left: 0;
}

/* Responsive */
@media (max-width: 480px) {
	.cofed-access-form__row {
		grid-template-columns: 1fr;
	}
}
