/**
 * 2023-2024 MultiContactForm
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Your Name <your.email@example.com>
 * @copyright 2023-2024 Your Company
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.multicontactform-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.cf-container-right {
    width: 67%;
}
.cf-container-left {
    width: 33%;
}

.multicontactform-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.multicontactform-form label {
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.multicontactform-form label.required:after {
    content: '*';
    color: #ff0000;
    margin-left: 4px;
}


.multicontactform-form input, .multicontactform-form textarea {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 12px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.multicontactform-form input:focus, .multicontactform-form textarea:focus {
    border-color: #faa619;
    outline: none;
}


#multicontactform-notification {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .multicontactform-form .row {
        display: block;
    }
    
    .multicontactform-form .col-md-6 {
        width: 100%;
        padding: 0;
    }
} 