<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* login.css */
body {
    background-color: #FFFFFF;
    background-image: url(https://www.entdecke.digital/wp-content/uploads/bg_login-scaled.jpg);
    background-position: 0vw 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    max-width: none !important;
}

.login-outer-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 50px);
    padding: 10vh 10vw !important;
}

.login-logo {
    width: 14vw;
}

.custom-login-wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.custom-login-form-container {
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.login-subtitle {
    font-size: 18px;
    text-align: center;
}

.login-description {
    text-align: center;
    margin-bottom: 20px;
}

.login-help {
    text-align: center;
}

.login-help-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.login-divider {
    margin: 20px 0;
}

.login-section-title {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    border: 2px solid #B9B9B9;
}

.login-submit-button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.login-submit-button:hover {
    background: #005177;
}

.login-forgot-password {
    text-align: center;
    margin-top: 20px;
}

.login-forgot-password a {
    color: #0073aa;
    text-decoration: none;
}

.login-forgot-password a:hover {
    text-decoration: underline;
}
</pre></body></html>