main.user-page {
    flex: 1; /* nimmt alles ein, schiebt Footer nach unten */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}


/* user-page */
.user-page {
    padding: 60px 12%;
    text-align: center;
}

.user-page h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #30629e;
}

.user-page input {
    font-family: 'Poppins', sans-serif;
}

.user-page select {
    font-family: 'Poppins', sans-serif;
}

.user-page a {
    font-family: 'Poppins', sans-serif;
    margin: 3rem 0 0 0;
    padding: 0.86rem;
    background: #30629e;
    color: #fff;
    border: none;
    border-radius: 8px;
    border: solid 2px #30629e;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 7.5rem;
}

.user-page a:hover {
    background: white;
    color: #30629e;
}

.user-page button {
    font-family: 'Poppins', sans-serif;
    margin: 3rem 0 0 0;
    padding: 0.8rem;
    background: #30629e;
    color: #fff;
    border: none;
    border-radius: 8px;
    border: solid 2px #30629e;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 7.5rem;
}

.user-page button:hover {
    background: white;
    color: #30629e;
    }