/* Login-Modal: einheitliches Styling für Login-, Recovery- und Meldungs-Ansichten */

#myModal .modal-content {
	border-radius: 8px;
	border: none;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

#myModal .modal-header {
	border-bottom: 3px solid #F49C27;
	padding: 18px 25px;
}

#myModal .modal-title {
	font-weight: 600;
}

#myModal .modal-body {
	padding: 25px;
}

/* Überschriften der felogin-Formulare (legend "Login", h1/h3 der Recovery-Seiten) */
#myModal legend,
#myModal h1,
#myModal h2,
#myModal h3 {
	font-size: 1.3em;
	font-weight: 600;
	border: none;
	margin: 0 0 15px 0;
	padding: 0;
}

#myModal fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

#myModal p {
	color: #666;
	font-size: 0.95em;
}

/* Meldungen (flashMessages): Punkt weg, saubere Box */
#myModal ul.typo3-messages,
#myModal ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}

#myModal ul.typo3-messages li,
#myModal li.alert {
	border: none;
	border-radius: 6px;
	padding: 12px 15px;
	margin-bottom: 10px;
	font-size: 0.95em;
}

/* Formularfelder */
#myModal label {
	display: block;
	font-weight: 600;
	font-size: 0.9em;
	margin: 12px 0 4px 0;
}

#myModal input[type="text"],
#myModal input[type="password"],
#myModal input[type="email"] {
	display: block;
	width: 100%;
	max-width: 400px;
	padding: 8px 12px;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: none;
	transition: border-color 0.15s;
}

#myModal input[type="text"]:focus,
#myModal input[type="password"]:focus,
#myModal input[type="email"]:focus {
	border-color: #F49C27;
	outline: none;
}

/* Buttons in Markenfarbe */
#myModal input[type="submit"],
#myModal button[type="submit"],
#myModal .btn {
	background: #F49C27;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 9px 22px;
	font-size: 1em;
	margin-top: 15px;
	cursor: pointer;
	transition: background 0.15s;
}

#myModal input[type="submit"]:hover,
#myModal button[type="submit"]:hover,
#myModal .btn:hover {
	background: #d9871a;
	color: #fff;
}

/* Links (Passwort vergessen, zurück zum Login) */
#myModal .modal-body a {
	display: inline-block;
	color: #F49C27;
	margin-top: 12px;
	font-size: 0.9em;
}

#myModal .modal-body a:hover {
	color: #d9871a;
	text-decoration: underline;
}

#myModal .modal-footer {
	border-top: none;
	padding: 0 25px 15px 25px;
}
