.custom-contact-form {
    max-width: 100%;
}

.custom-contact-form .form-group {
    margin-bottom: 20px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    text-align:left;
}

.custom-contact-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.custom-contact-form .form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.custom-contact-form select.form-control {
    cursor: pointer;
}

.custom-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.custom-contact-form input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.custom-contact-form .ct-button {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.custom-contact-form .ct-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.custom-contact-form .form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.custom-contact-form .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.custom-contact-form .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot verstecken */
#website {
    position: absolute;
    left: -9999px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-contact-form {
        padding: 15px;
    }

    .custom-contact-form .form-control {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}