body {
    font-family: sans-serif;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0; /* Entfernt Standard-Margin des Bodys */
}

.grid {
    display: grid; 
    grid-template-columns: 1fr 1fr;
}

.grid-column {
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
}

.container {
    width: calc(70vh * (11 / 16)); /* Breite basierend auf 9:16 Verhältnis */
    height: 70vh;
    overflow: hidden; 
}

.container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild wird zugeschnitten, um das Verhältnis zu halten */
    border-radius: 36px;
    object-position: 17% 50%; 
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px; /* Feste Breite für die Karte */
}

.card h1 {
    text-align: center; /* Zentriert den Inhalt */
}

.card h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.card button {
    background-color: #007bff;
    font-size: 16px;
    color: white;
    height: 44px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    gap: 32px;
    width: 100%; /* Button nimmt die volle Breite der Karte ein */
}

.card input {
    height: 44px;
    background-color: #F4F4F4;
    border: none;
    border-bottom: 2px;
}

.card button:hover {
    background-color: #0056b3;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.card p {
    margin-bottom: 20px;
    margin-top: 8px;
    color: #555555;
} 

.input-group input {
    width: 400px;
    padding: 8px;
    height: 44px;
    background-color: #F4F4F4;
    border: none;
    border-bottom: 2px solid grey;
    border-radius: 4px 4px 0px 0px;
    box-sizing: border-box; /* Wichtig für die korrekte Breitenberechnung */
}

.external-links {
    display: flex;
    justify-content: space-evenly;
    width: inherit;
    padding-top: 44px;
}

.external-links a {
    font-size: 14px;
    color: grey;
    text-decoration: underline;
}

.logo {
    left: 44px;
    top: 24px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    color: white;
    font-weight: bold;
    width: 50%;
}

.logo img {
    height: 56px;
    width: 56px; 
    filter: invert(1);
}
