/*GRUNDLAGE*/

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    height: 100vh; /* Höhe des Bildschirms auf 100% setzen */
    display: flex;
    justify-content: center;
    align-items: center;
	min-height: 100vh; /* Setzt die Mindesthöhe, um Probleme mit vh auf mobilen Geräten zu vermeiden */
    box-sizing: border-box; /* Verhindert Überlauf bei Padding */
}

/* Eingabefelder */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Button */
input[type="submit"] {
    background-color: #8D7A42;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

/* Button-Hover-Effekt */
input[type="submit"]:hover {
    background-color: #716235;
}

button[type="submit"] {
    background-color: #8D7A42;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

/* Button-Hover-Effekt */
button[type="submit"]:hover {
    background-color: #716235;
}

input[type="submit"]:disabled, button[type="submit"]:disabled, button[type="button"]:disabled {
    background-color: #C0C0C0;
	color: #666666; /* Textfarbe etwas dunkler */
	cursor: not-allowed; /* Ändert den Mauszeiger auf "nicht erlaubt" */
}

/* Button */
button[type="abbruch"] {
    background-color: #A73030;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

/* Button-Hover-Effekt */
button[type="abbruch"]:hover {
    background-color: #671E1E;
}

/* Titel-Text */
h2 {
    margin-bottom: 20px;
    color: #333333;
	font-size: 30px;
}

h3 {
    margin-bottom: 20px;
    color: #333333;
	font-size: 20px;
}

a {
	font-size: bold;
	color: #333333;
	text-decoration: none;
}

a:hover {
	color: #716235;
}

/* _____________________________________________________________________________________________________________ */

/*LOGIN*/

.criteria-list {
	font-size: 12px;
	color: #666;
	margin-top: 5px;
	list-style-type: none; /* Entfernt die Aufzählungspunkte */
    padding-left: 0px; /* Entfernt den linken Einzug */
}

/* Container für das Login-Formular */
.log-container {
    background-color: #FFFFFF;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

/* Logo-Design */
.logo {
    width: 165px; /* Passe die Breite des Logos nach Bedarf an */
    margin-bottom: 5px; /* Abstand zwischen Logo und Login-Formular */
	padding-top: 5px;
}

/* Fehlermeldung */
.error-message {
    color: red;
    margin: 10px 0;
    font-size: 14px;
    text-align: left;
}