﻿.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* volle Höhe des Viewports */
    background-color: #f0f4f8; /* Beispiel-Hintergrundfarbe */
}

/* Kachel */
.landing-card {
    background-color: white;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

/* Logo */
.landing-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

/* Text */
.landing-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
}

/* Login-Button */
.landing-login-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.landing-login-button:hover {
    background-color: #0056b3;
}
