/* General styles */
body {
    margin: 0;
    background-color: #F0F4FF;
    font-family: "Libre Franklin", sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;

    width: 100%;
    max-width: 600px; /* Inhalt bleibt kompakt */
    margin: 0 auto;    /* Zentriert */
    padding: 2em;
    box-sizing: border-box;
}

img {
    width: 100px;
    height: auto;
}

h2 {
    color: #101E52;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

h1 {
    color: #313C66;
    font-size: 2.5rem;
    font-weight: 500;
}

input {
    display: flex;
    width: 280px;
    height: 60px;
    padding: 16px 24px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 2px solid #313C66;

    font-size: 1.3rem;
    color: #313C66;
    box-sizing: border-box;
}

label {
    color: #101E52;
    font-size: 1.5rem;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    gap: 3em;
    width: 100%;
    align-items: center;
}

.img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.paragraph {
    color: #101E52;
    font-size: 1.5rem;
    font-weight: 500;
}

main p {
    color: #101E52; /* oder eine Farbe deiner Wahl */
    font-size: 1.2rem;
    text-align: center;
}

main a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #101E52;
    text-decoration: underline;
}


