﻿
.logoholder {
    /*display: none;*/
}

p, .description span, label {
    font-size:calc(0.8rem + 0.5vw);
}

label {
    line-height: calc(2rem + 1vh);
}

#cph_content_lblError {
    font-size: calc(0.8rem + 0.5vw);
    font-weight: bold;
}

.inputfield input[type=text], .inputfield input[type=date] {
    font-size: calc(0.9rem + 0.2vw);
    padding-left: calc(5rem / 16);
}

.inputfield input[type=submit], .inputfield input[type=button] {
    font-size: calc(1rem + 0.2vw);
    cursor: pointer;
}

.headline1 p {
    font-size: calc(1.1rem + 0.8vw);
    text-decoration: underline;
    font-weight: bold;
    text-align: center;
}

.headline2 p {
    font-size: calc(0.9rem + 0.6vw);
    font-weight: bold;
    text-align: center;
}

.headline3 p {
    font-size: calc(0.8rem + 0.6vw);
    font-weight: bold;
    text-align: center;
}


/* Einfacher Text */
.full-text {
    width: 100%;
    margin-bottom: 2rem;
}

/* Bild + Text */
.image-text {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

    .image-text .image {
        flex: 0 0 20%;
    }

        .image-text .image img {
            width: 100%;
            height: auto;
            display: block;
        }

    .image-text .text {
        flex: 1;
        display: flex;
        align-items: center;
       
    }

/* Nur Bild, zentriert */
.centered-image {
    text-align: center;
    margin-bottom: 2rem;
}

    .centered-image img {
        max-width: 100%;
        height: auto;
    }

/* Responsive Verhalten */
@media (max-width: 768px) {
    .image-text {
        flex-direction: column;
    }



    .image-text .image {
        max-width: 50%;
    }

}

.contentholder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 50vw;
    margin: 0 auto;
    padding: 1rem;
}

.contentholder > * {
    width:100%;
}

/* Responsive Breakpoints */
@media only screen and (max-width: 1024px) {
    .contentholder {
        max-width: 80vw;
    }
}

@media only screen and (max-width: 768px) {
    .contentholder {
        max-width: 95vw;
    }
}

@media only screen and (max-width: 480px) {
    .contentholder {
        max-width: 100vw;
    }
}

.signup {
    display: flex;
    flex-wrap: wrap;
    flex-direction:row;
    align-items: center;
    margin-bottom: 2rem;
}

.inputarea {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
}

.submitarea {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
}


@media (max-width: 768px) {
    .inputarea,
    .submitarea {
        flex-basis: 100%;
        width: 100%;
    }
}

input {
    width: 100%;
    height: calc(2rem + 1vh);
    line-height: calc(2rem + 1vh);
}

.description{
    margin-bottom:5px;
}

.inputarea, .submitarea {
    padding: calc(8rem / 16);
}

