/* Reset und Grundlayout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #425465, #77AAD9);
    color: #333;
    line-height: 1.6;
}


/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    margin-right: 10px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navigation a:hover {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

.content-box h2 {
    margin-bottom: 15px;
}

.content-box p {
    color: #777;
    font-size: 16px;
}

.content-box a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.content-box a:hover {
    opacity: 0.8;
}

/* Login-Formular (Happy Feed Look) */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);  /* Berücksichtigt Header und Footer */
    padding: 20px;
}

.login-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.form-logo img {
    width: 100%;
    height: 100%;
    margin: 0 auto 15px;
}

.login-form h2 {
    margin: 10px 0;
    font-size: 24px;
}

.tagline {
    color: #777;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.checkbox-container {
    text-align: left;
    margin: 10px 0;
    font-size: 14px;
}

.login-button {
    width: 100%;
    padding: 12px 15px;
    background-color: #425465;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #364859;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.login-links a {
    text-decoration: none;
    color: #425465;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: rgba(255,255,255,0.9);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
}
