/* Anmeldeleiste der Trainerabrechnung. */

.ta-band {
	--ta-blau: #1f4e79;
	--ta-blau-hell: #2e6da4;
	--ta-rahmen: #d8dee6;
	--ta-flaeche: #ffffff;
	--ta-grau: #f5f7fa;
	--ta-text: #22282f;
	--ta-leise: #64717f;
	--ta-gruen: #2f7d32;
	--ta-rot: #b3261e;
	--ta-radius: 10px;
	background: var(--ta-grau);
	border: 1px solid var(--ta-rahmen);
	border-radius: var(--ta-radius);
	color: var(--ta-text);
	font-size: 15px;
	margin: 0 0 18px;
	padding: 10px 14px;
}

.ta-band-innen {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ta-band-titel {
	font-weight: 600;
}

.ta-band-rolle,
.ta-band-meldung {
	color: var(--ta-leise);
	font-size: 13px;
}

.ta-band-feld {
	border: 1px solid var(--ta-rahmen);
	border-radius: 6px;
	font: inherit;
	max-width: 200px;
	padding: 6px 8px;
}

.ta-band-check {
	align-items: center;
	color: var(--ta-leise);
	display: inline-flex;
	font-size: 13px;
	gap: 4px;
}

.ta-band .ta-btn,
.ta-fe .ta-btn {
	background: var(--ta-blau, #1f4e79);
	border: 1px solid var(--ta-blau, #1f4e79);
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font: inherit;
	line-height: 1.3;
	padding: 7px 14px;
	text-decoration: none;
}

.ta-band .ta-btn:hover,
.ta-fe .ta-btn:hover {
	background: var(--ta-blau-hell, #2e6da4);
	border-color: var(--ta-blau-hell, #2e6da4);
}

.ta-band .ta-btn-leer,
.ta-fe .ta-btn-leer {
	background: var(--ta-flaeche, #ffffff);
	color: var(--ta-blau, #1f4e79);
}

.ta-band .ta-btn-warn,
.ta-fe .ta-btn-warn {
	background: var(--ta-rot, #b3261e);
	border-color: var(--ta-rot, #b3261e);
	color: #ffffff;
}

.ta-band .ta-btn-aus,
.ta-fe .ta-btn-aus {
	background: #eef1f5;
	border-color: #c3ccd6;
	color: #5a6472;
	cursor: not-allowed;
	opacity: 1;
}

.ta-band .ta-btn-aus:hover,
.ta-fe .ta-btn-aus:hover {
	background: #eef1f5;
	border-color: #c3ccd6;
	color: #5a6472;
}

.ta-band .ta-btn-klein,
.ta-fe .ta-btn-klein {
	font-size: 13px;
	padding: 4px 9px;
}

/* Formular für ein neues Passwort. */

.ta-passwort {
	background: #ffffff;
	border: 1px solid #d8dee6;
	border-radius: 10px;
	margin: 0 0 18px;
	max-width: 460px;
	padding: 18px;
}

.ta-passwort h2 {
	margin-top: 0;
}

.ta-passwort .ta-feld {
	display: block;
	margin: 0 0 12px;
}

.ta-passwort .ta-feld span {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.ta-passwort input {
	border: 1px solid #d8dee6;
	border-radius: 6px;
	box-sizing: border-box;
	font: inherit;
	padding: 8px;
	width: 100%;
}

.ta-meldung {
	border-radius: 6px;
	margin: 10px 0;
	padding: 8px 10px;
}

.ta-meldung.erfolg {
	background: #e8f4ea;
	color: #2f7d32;
}

.ta-meldung.fehler {
	background: #fbe9e7;
	color: #b3261e;
}

.ta-hinweis {
	background: #f5f7fa;
	border: 1px solid #d8dee6;
	border-radius: 10px;
	padding: 12px 14px;
}

.ta-hinweis-warnung {
	background: #fff8e1;
	border-color: #f0d68a;
}

.ta-leise {
	color: #64717f;
	font-size: 13px;
}

@media (max-width: 640px) {
	.ta-band-innen {
		align-items: stretch;
		flex-direction: column;
	}

	.ta-band-feld {
		max-width: none;
	}
}
