/* Basic form styling */
.custom-form-container {
    width: 100%; /* Set width to 100% */
    max-width: none; /* Remove max-width constraint */
    margin: 0; /* Remove auto margins for full width alignment */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.custom-form-container input[type="text"],
.custom-form-container input[type="email"],
.custom-form-container input[type="tel"],
.custom-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.custom-form-container textarea {
    resize: vertical;
    min-height: 100px;
}

.custom-form-container button {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.custom-form-container button:hover {
    background-color: #005177;
}

.custom-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

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

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

