/* Kontaktformular */
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
    border: 1px solid #c9dfd5;
    border-radius: 10px;
    background: #ffffff;
    color: #2d3f39;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2da77a;
    box-shadow: 0 0 0 3px rgba(45, 167, 122, 0.14);
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #2da77a;
}

button {
    background: var(--primary);
    color: white;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}