/* ABA Mitgliederbereich – Frontend-Styles */

.aba-form {
	max-width: 480px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: #fafafa;
}

.aba-form-row {
	margin-bottom: 16px;
}

.aba-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.aba-form-row label small {
	font-weight: 400;
	color: #777;
}

.aba-form-row input[type="text"],
.aba-form-row input[type="email"],
.aba-form-row input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

.aba-form-row input:focus {
	outline: none;
	border-color: #c0392b;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

.aba-form-row-inline label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
}

.aba-button {
	display: inline-block;
	padding: 12px 28px;
	background: #c0392b;
	color: #fff !important;
	border: 2px solid #c0392b;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none !important;
	transition: background 0.15s ease;
}

.aba-button:hover {
	background: #a53125;
	border-color: #a53125;
	color: #fff;
}

.aba-button-small {
	padding: 8px 18px;
	font-size: 14px;
	margin-top: 10px;
	margin-right: 6px;
}

.aba-button-outline {
	background: transparent;
	color: #c0392b !important;
}

.aba-button-outline:hover {
	background: #c0392b;
	color: #fff !important;
}

.aba-form-hint {
	font-size: 14px;
	color: #666;
	margin-top: 12px;
}

.aba-link {
	color: #c0392b;
	text-decoration: underline;
}

/* Honeypot-Feld verstecken */
.aba-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 1px;
	overflow: hidden;
}

/* Hinweisboxen */
.aba-notice {
	padding: 16px 20px;
	border-radius: 8px;
	margin: 16px 0;
	border-left: 4px solid;
	line-height: 1.5;
}

.aba-notice-success {
	background: #edfaef;
	border-color: #2e9e5b;
	color: #1e5b38;
}

.aba-notice-info {
	background: #eef4fb;
	border-color: #3773aa;
	color: #24476b;
}

.aba-notice-error {
	background: #fcf0f1;
	border-color: #c0392b;
	color: #7a221a;
}
