* {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    --color-mint: #93C3AE;
    --color-koralle: #EEB7AF;
    --color-anthrazit: #555;
    --color-weiss: #fff;
    --color-rot: #b5033b;
    --font-headline: 'Muthea';
    font-size: 15px;

}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0px;
}

.mainContainer {
    width: 90%;
    height: auto;
    border: 0px solid #f00;
    background-color: transparent;
    position: absolute;
    left: 5%;
    top: 0%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.container {
    width: calc(100% - 20px);
    height: auto;
    margin: 3% 0 10% 0;
    background-color: rgba(147, 195, 174, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    /*background-image: url(img/snowflakes_mint_30.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 0% right 0%;
    background-blend-mode: multiply;*/
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1;
}

@media only screen and (min-width: 500px) {
    .container {
        width: calc(600px - 20px);
    }
}

.bgElement1 {
    background-color: transparent;
    background-image: url(../konto/img/Element1.webp);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: top 0px left 0px;
    position: fixed;
    z-index:-10;
    width: 100%;
    height: 100vh;
}

.bgElement2 {
    background-color: transparent;
    background-image: url(../konto/img/Element2.webp);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: bottom 0px right 0px;
    position: fixed;
    z-index:-10;
    width: 100%;
    height: 100%;
}

form,
.success-message {
    max-width: 100%;
    margin: 0 auto;
}

input,
textarea,
button {
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    margin: 5px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    color: #000000;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.full {
    width: calc(100% - 20px);
    height: 50px;
    padding: 0px 10px;
    margin: 5px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    color: #000000;
}

.half {
    width: calc(100% - 20px);
    height: 50px;
    padding: 0px 10px;
    margin: 5px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    color: #000000;
}

.inputEmail {
    width: calc(100% - 20px);
}

select {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    color: #000000;
    position: relative;
    text-align: left;
    text-align-last: left;
    -moz-text-align-last: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--color-mint);
    text-decoration: none;
}

a:hover {
    color: var(--color-koralle);
    text-decoration: underline;
}

/* Styling für Checkboxen */
input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}
.checkbox_container, .checkbox_container a {
    text-align: left;
    font-size: 12px;
}

/* Styling für Checkbox-Labels */
label {
    display: flex;
}

hr {
    border: 1px solid var(--color-mint);
}

.row {
    display: flex;
    gap: 10px;
}

.row div {
    flex: 1;
}

button {
    height: 50px;
    background-color: var(--color-mint);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
}

button:hover {
    background-color: var(--color-koralle);
}

#summary {
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 15px;
    border-radius: 5px;
    background-color: var(--color-mint);
    text-align: left;
    color: var(--color-weiss);
}

.infoText {
    font-size: 12px;
}

.success-message {
    text-align: center;
    margin-top: 50px;
}

.footer {
    width: 100%;
    height: 40px;
    background-color: transparent;
    margin: 0px;
    margin-top: 20px;
    border: 0px solid #f00;
    bottom: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    /*position: fixed;*/
    color: var(--color-mint);
    font-size: 12px;
    z-index: 0;
}