/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 95%;
    margin: 0 auto;
    border-radius: 10px;
}

/* Logo Container */
.logo-container {
    text-align: center;
    padding: 20px 0;
}

.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Seitenbeschreibung */
.description-container {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}

.description-text {
    font-size: 28px;
    font-weight: normal;
    line-height: 1.4;
}

.description-text .bold-large {
    font-weight: bold;
    font-size: 32px;
}

.subtext {
    font-size: 16px;
    color: red;
    margin-top: 10px;
}

/* Menü */
.menu-container {
    background-color: #f0f0f0;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.menu-content {
    text-align: left;
    font-size: 18px;
    padding-left: 10px;
}

/* Content Container */
.content-container {
    min-height: 300px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 60%;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.button-group button {
    width: 48%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-group button[type="submit"] {
    background-color: #4CAF50;
    color: white;
}

.button-group button[type="button"] {
    background-color: #008CBA;
    color: white;
}

.button-group button:hover {
    opacity: 0.9;
}

/* Footer */
.footer-container {
    background-color: #ff4d4d;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

.footer-container a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}




