/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}

/* Überschriften */
h2 {
    text-align: center;
    color: #2c3e50;
	margin: 20px;
    padding: 20px 0;  /* Vertikale Abstände hinzufügen */
    font-size: 24px;  /* Eine standardisierte Schriftgröße */
    font-weight: bold;  /* Fette Schrift für bessere Lesbarkeit */
	position: fixed;
    top: 0;
/*    left: 0; */
    z-index: 9999;
}

/* Eingabefelder */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Buttons */
button {
    width: 100%;
    padding: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

button:hover {
    background: #1a252f;
}

/* Links */
.back-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

a {
     display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #2c3e50; /* Grün */
  color: white;
  border: 2px solid #2c3e50;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
}

a:hover {
  background: #1a252f;
  border-color: #1a252f;
}
