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;
}

* {
    margin: 0;
}

body {
    color: var(--akzentfarbe);

    /*
    display: flex;
    justify-content: center;
    flex-direction: column;
    */

    height: 100vh;
    width: 100vw;
}

.login-container {
    height: 100vh;
}

h1 {
    text-align: center;
    padding-top: 7vh;
}

.login-form {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 4vh - 37px);
    margin: 0 env(safe-area-inset-bottom);
}

.first-label {
    padding-top: 50px;
}

.second-label {
    padding-top: 20px;
}

.login-form label {
    font-size: 20px;
    padding-bottom: 5px;
}

.login-form input {
    height: 30px;
    border: 2px solid var(--akzentfarbe);
    outline:none;
    border-radius: 9999px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
}

.login-form input::placeholder {
    color: var(--akzentfarbe);
}

.error-msg {
    padding-top: 50px;
}

.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%;
    align-self: center;
    margin-top: auto;
    margin-bottom: 70px;
}