/* Grundlayout */
.ketmarket-form {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.form-heading {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}

.form-input,
.form-select,
textarea.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea.form-input {
    resize: vertical;
}

/* Buttons */
.form-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #add8e6;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover-Effekte */
.form-button:hover {
    background-color: #005E86;
    color: #fff;
}

#contact-name, #phone {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

