html {
    font-family: 'Franklin Gothic Demi', 'Arial', sans-serif;
    --akzentfarbe: #00407f;

    overflow: hidden;
    touch-action: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
}

body {
    margin: 0;
    color: var(--akzentfarbe);
}

.login-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;

    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: rgba(0, 64, 127, 0.3);
}

.login-up {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: center;     /* vertikal zentrieren */

    height: 60vh;
    height: 60dvh;
}

.login-up img{
    position: absolute;
    /*transform: translateY(120px);*/

    width: 30%;

    z-index: 99;
}

.login-down {
    position: relative;
    width: 100%;
    margin-top: auto;

    background-color: white;
    z-index: 1;
}

.login-wave {
    position: absolute;
    top: -120px;
    width: 100%;
    height: 120px;
    display: block;
    fill: white;
    z-index: 2;
}

.login-down-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: auto;
    /* Abstand zum Boden */
    margin-bottom: 70px;
}

.login-down-content h1 {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 40px;
}

.login-down-content p {
    font-size: 20px;
    margin-bottom: 10%;
    margin-right: 20px;
    margin-left: 20px;
}

.login-down-content a {
    width: 100vw;
}

.login-btn {
    padding: 14px 16px;
    border: none;
    border-radius: 9999px;
    font-size: 20px;
    background-color: var(--akzentfarbe);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 60%;
}

.login-btn:hover {
  background-color: rgba(0, 64, 127, 0.5);
}