/* ===========================================
   TYPOGRAPHY & TEXT
=========================================== */
/* p {
    margin-top: 0.5rem;
    padding: 0 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
} */

/* ===========================================
   LIST STYLES
=========================================== */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-left: 2.5rem;
    margin-top: 0.5rem;
}

/* ===========================================
   FORM STYLES
=========================================== */
input,
select,
textarea {
    width: 100%;
    min-height: 36px;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
}

textarea {
    display: block;
    margin: auto;
    resize: vertical;
}

fieldset label {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ===========================================
   MULTI-STEP FORM STYLING
=========================================== */
.formularauswahl {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 24px auto;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.5rem;
}

.formularauswahl input {
    width: 24px;
}

.stepcontainer {
    text-align: center;
    margin-top: 1rem;
}

.step {
    display: inline-block;
    margin: 0 0.25rem;
    height: 15px;
    width: 15px;
    background-color: #bbbbbb;
    border-radius: 50%;
    opacity: 0.5;
}

/* ===========================================
   DATENSCHUTZ / CHECKBOX SECTION
=========================================== */
.datenschutz {
    display: grid;
    grid-template-columns: 24px 1fr 1fr;
    column-gap: 0.5rem;
    align-items: center;
    padding: 0.25rem;
}

.datenschutz h2 {
    grid-column: 1 / span 3;
    margin-bottom: 0.5rem;
}

.datenschutz p {
    grid-column: 2 / 3;
}

.datenschutz input[type="checkbox"] {
    width: auto;
}

.g-recaptcha {
    grid-column: 1 / 3;
    padding-top: 0.5rem;
}

/* ===========================================
   BUTTON STYLING
=========================================== */
.buttoncontainer {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 1rem;
    text-align: center;
    overflow: hidden;
}

.buttonocopacity {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* vorher 15%, korrigiert */
    background: linear-gradient(90deg, #12111f, #5ce1e6, #12111f);
    top: 0;
    left: 0;
}

.buttoncontent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contactbutton {
    border: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    cursor: pointer;
    background: none;
    color: #ffffff;
    z-index: 1;
    transition: background 0.3s, color 0.3s;
}

.contactbutton:focus,
.contactbutton:hover {
    outline: 2px solid #5ce1e6;
    outline-offset: 2px;
    background-color: rgba(92, 225, 230, 0.1);
}

/* ===========================================
   RESPONSIVE DESIGN
=========================================== */
@media (max-width: 768px) {
    .formularauswahl {
        grid-template-columns: 20px 1fr;
        column-gap: 0.5rem;
    }

    .datenschutz {
        grid-template-columns: 20px 1fr;
    }

    ul li {
        margin-left: 1.5rem;
    }
}

/* ===========================================
   ACCESSIBILITY / FOCUS
=========================================== */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid #5ce1e6;
    outline-offset: 2px;
}

/* ===========================================
   UTILITY CLASSES
=========================================== */
.text-center {
    text-align: center;
}

.margin-top-small {
    margin-top: 0.5rem;
}

.padding-small {
    padding: 0.5rem;
}
