.i2-anmeldung {
    font-family: "Azo Sans", sans-serif;
    color: #fff;
}

.i2-anmeldung,
.i2-anmeldung input,
.i2-anmeldung select,
.i2-anmeldung textarea,
.i2-anmeldung label,
.i2-anmeldung span {
    font-weight: 300;
}

.i2-fields {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.i2-row {
    display: flex;
    gap: 24px;
}

.i2-col {
    flex: 1;
    min-width: 0;
}

.i2-row > .i2-col.i2-20 { flex: 30 1 0%; }
.i2-row > .i2-col.i2-40 { flex: 35 1 0%; }
.i2-row > .i2-col.i2-50 { flex: 50 1 0%; }
.i2-row > .i2-col.i2-80 { flex: 75 1 0%; }
.i2-row > .i2-col.i2-100 { flex: 100 1 0%; }

.i2-field > label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.i2-section-title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.i2-anmeldung input[type="text"],
.i2-anmeldung input[type="email"],
.i2-anmeldung select,
.i2-anmeldung textarea {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 0 !important;
    background: #ececec;
    color: #222;
    font-family: "Azo Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.i2-anmeldung input[type="text"],
.i2-anmeldung input[type="email"],
.i2-anmeldung select {
    height: 52px;
    padding: 0 18px;
}

.i2-anmeldung textarea {
    min-height: 180px;
    padding: 16px;
    resize: vertical;
}

.i2-anmeldung input::placeholder,
.i2-anmeldung textarea::placeholder {
    color: #8b8b8b;
}

.i2-checkbox-group label,
.i2-check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 300;
    line-height: 1.4;
}

.i2-checkbox-group label:last-child,
.i2-check-label:last-child {
    margin-bottom: 0;
}

.i2-checkbox-group input[type="checkbox"],
.i2-dsgvo input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin: 0;
    flex-shrink: 0;
}

.i2-dsgvo-label {
    gap: 15px;
    line-height: 1.7;
}

.i2-dsgvo a,
.i2-dsgvo a:visited,
.i2-hinweis a,
.i2-hinweis a:visited {
    color: #fff !important;
    text-decoration: underline !important;
    font-weight: 700;
}

.i2-hinweis {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.i2-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.i2-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 370px;
    padding: 18px 42px !important;
    border: 0;
    background: #FAB400 !important;
    color: #000 !important;
    font-family: "Azo Sans", sans-serif;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: none !important;
}

.i2-submit:hover,
.i2-submit:focus,
.i2-submit:active,
.i2-submit:visited {
    background: #FAB400 !important;
    color: #000 !important;
    box-shadow: none !important;
    outline: none !important;
}

.i2-button-chevron {
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
}

@media (orientation: portrait) and (max-width: 1200px) {
    form.i2-anmeldung .i2-row {
        flex-direction: column;
        gap: 28px;
    }

    form.i2-anmeldung .i2-row > .i2-col {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .i2-actions {
        justify-content: stretch;
    }

    .i2-submit {
        width: 100%;
        min-width: 0;
    }
}