* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #000;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

body {
    background: url('../images/hero.jpg') no-repeat center center fixed;
    background-size: cover;
    font-size: 14px;
    margin: 0;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
@media (max-width: 600px) {
    body {
        border-top-right-radius: 1.5rem;
        border-top-left-radius: 1.5rem;
    }
}

.main--content {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.header, .content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Logo oben links */
.header {
    position: relative;
    z-index: 2;
}

.logo {
    margin-top: 2rem;
    width: 120px;
}

.content {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    padding-bottom: 20vh;
}

.content h2 {
    font-family: serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.content h1 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.content .card {
    background: rgba(18, 18, 18, .75);
    border-radius: 1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 2.75rem 3rem;
}

.btn {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 5px;
    color: white;
    display: inline-block;
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: rgba(0, 0, 0, 1);
}

.btn-cancel {
    border: none;
    background: none;
    color: #fff;
    margin-left: 2rem;
}

.btn-green {
    background-color: rgb(40, 199, 111);
}

.btn-green:hover {
    background: rgb(40, 199, 111);
}

.footer {
    background-color: #000;
    padding: 50px 0;
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.login-form {
    animation: growDown 0.3s ease forwards;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1em;
    transform-origin: top;
}

.login-form input {
    background-color: rgba(0,0,0,.5);
    border: none;
    border-radius: 5px;
    color: rgba(255,255,255,1);
    font-size: 1.2rem;
    padding: 1rem;
}

.login-form input::placeholder {
    color: rgba(255,255,255,.75);
}

@media (max-width: 600px) {
    .header {
        text-align: center;
    }

    .content .card {
        padding: 1.75rem 2rem;
    }

    .content h1 {
        font-size: .65rem;
    }

    .content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 1200px) {
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Animatinos */
@keyframes growDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}