:root {
    /* contact-form */
    --primary-color: ;
    --secondary-color: ;
    --accetone-color: ;
}

.contact-form {
    background-color: var(--secondarycolor-main);
    padding: 2rem; /* referenz zum root element (sollte hier 16px oder so sein */
    border-radius: var(--radius-body-bottom);
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--font-color);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accentoncolor-main);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primarycolor-main);
}