.container_medi_neu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    top: 30vh;
    height: 60vh;
    width: 100vw; /* 100% der Viewport-Breite */
    left: 50%; /* Container zur Mitte verschieben */
    transform: translateX(-50%); /* Dann um die Hälfte zurück für echte Zentrierung */
    background-color: #FE7593;
    border-radius: 8vw 8vw 0 0;
    padding: 10vw;
    z-index: 1;
}

.input_name {
    display: flex;
    font-family: "workSans";
    text-transform: uppercase;
    width: 80%;
    background-color: #FE7593;
    color: rgb(0, 0, 0);
    font-size: 4vw;
    text-align: left;
    border-style: none;
}

/* Fehlernachricht */
.error_message {
    display: flex;
    font-family: 'workSans';
    font-weight: 400;
    font-size: 2.5vw;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    width: 80%;
    margin-top: 1vw;
}