body, html {
  height: 100%;
  min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: rgba(255, 255, 255, 0.85);

  background-image: 
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url('./assets/subtle-water-background.png');
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error {
    color: orange;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid orange;
    background-color: #fff3cd; /* Heller Orangeton */
    border-radius: 5px;
}


.container {
    background: rgba(250, 250, 250, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 3rem;
    border-radius: 10px;
    width: 90%;
    max-width: 650px;
    z-index: auto;
    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    background-image: url('css-2024/assets/container-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}


@media (max-width: 480px) {
    .logo {
        max-width: 80%; /* Macht das Logo etwas kleiner */
    }

    .container {
        width: 95%; /* Macht den Container fast bildschirmbreit */
    }

    body {
        font-size: 14px; /* Verkleinert die Basisschriftgröße */
    }
}





@media (min-width: 1200px) {
    .container {
        max-width: 700px;
    }
}
