/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.weddyn-contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.weddyn-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.weddyn-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.weddyn-contact-form input,
.weddyn-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.weddyn-contact-form .submit-button {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.weddyn-contact-form .submit-button:hover {
    background-color: #0056b3;
}