/* Update the CSS for the form container */
.form-container {
    width: 60%; /* Adjust the width as needed */
    margin: 0px auto; /* Center the form and add margin on top for spacing */
    padding: 30px;
    background-color: #70411E; /* Orange background color */
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add shadow for a floating effect */
    text-align: center;
}

/* Form heading */
.form-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.form-container p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Form styling */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-right: 10px;
    text-align: left;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
    color: white;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    background-color: white; /* White background for the input */
    border: none;
    border-radius: 5px; /* Rounded corners for the input */
    color: #333; /* Dark text color inside the input */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Slightly more pronounced shadow on focus */
}

/* Submit button styling for the other form */
.submit-button {
    background-color: white;
    color: #70411E; /* Darker brown text */
    padding: 12px 20px;
    font-size: 1.2em;
    border: 2px solid #A86D28; /* Lighter brown border */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: #A86D28; /* Lighter brown background on hover */
    color: white; /* White text on hover */
    border-color: #70411E; /* Darker brown border on hover */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* INICIO CONTACT FORM 
   INICIO CONTACT FORM 
   INICIO CONTACT FORM */




/* Container for the entire contact form section */
.vm_contactform-container {
    display: flex;
    justify-content: space-between;
    padding: 150px 20px 20px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Columns for left and right sections */
.vm_contactform-col {
    width: 48%;
}

/* Left Section: General Contact Information */
.vm_contactform-info-section .vm_contactform-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #70411E; /* Brownish orange */
}

.vm_contactform-info-section .vm_contactform-paragraph {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333; /* Black text */
}

.vm_contactform-info-section .vm_contactform-info {
    list-style: none;
    padding: 0;
}

.vm_contactform-info-section .vm_contactform-info-item {
    margin-bottom: 10px;
    font-size: 1em;
    color: #333; /* Black text */
}

.vm_contactform-info-section .vm_contactform-icon {
    color: #70411E; /* Brownish orange icons */
}

.vm_contactform-info-section .vm_contactform-link {
    color: #70411E;
    text-decoration: none;
}

/* Right Section: Contact Form */
.vm_contactform-form-section .vm_contactform-inner-container {
    padding: 15px;
    background-color: #f5f5f5; /* Light grey background */
    color: #70411E; /* Brownish orange text */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vm_contactform-form-section .vm_contactform-heading {
    font-size: 5.5em;
    margin-bottom: 20px;
    color: #70411E;
}

/* Flexbox for form alignment */
.vm_contactform-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Form group styling */
.vm_contactform-form-section .vm_contactform-group {
    margin-bottom: 20px;
    text-align: left;
}

.vm_contactform-form-section .vm_contactform-label {
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
    color: #333; /* Black text */
}

.vm_contactform-form-section .vm_contactform-input,
.vm_contactform-form-section .vm_contactform-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333; /* Black text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vm_contactform-input option {
font-family: "Arial Narrow", Arial, sans-serif; /* Replace 'YourDesiredFont' with the font you want */
  font-size: 14px; /* Adjust the size as needed */
  color: #888; /* Adjust the color if needed */
  font-style: italic; /* Optional, you can add styles like italic */
}


.vm_contactform-input::placeholder {
  font-family: "Arial Narrow", Arial, sans-serif; /* Replace 'YourDesiredFont' with the font you want */
  font-size: 14px; /* Adjust the size as needed */
  color: #888; /* Adjust the color if needed */
  font-style: italic; /* Optional, you can add styles like italic */
}

.vm_contactform-textarea::placeholder {
  font-family: "Arial Narrow", Arial, sans-serif; /* Replace 'YourDesiredFont' with the font you want */
  font-size: 14px; /* Adjust the size as needed */
  color: #888; /* Adjust the color if needed */
  font-style: italic; /* Optional, you can add styles like italic */
}

.vm_contactform-form-section .vm_contactform-input:focus,
.vm_contactform-form-section .vm_contactform-textarea:focus {
    outline: none;
    border-color: #70411E; /* Brownish orange border on focus */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.vm_contactform-form-section .vm_contactform-textarea {
    height: 150px; /* Adjusted height for larger text area */
    resize: none;
}

/* Character counter styling */
.vm_contactform-form-section .vm_contactform-charCount {
    text-align: right;
    font-size: 0.9em;
    color: #70411E;
    margin-top: 5px;
}

/* Submit button styling */
.vm_contactform-form-section .vm_contactform-submit-button {
    background-color: #A86D28; /* Orange */
    color: white;
    padding: 12px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.vm_contactform-form-section .vm_contactform-submit-button:hover {
    background-color: #70411E; /* Slightly darker orange on hover */
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .vm_contactform-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .vm_contactform-col {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .vm_contactform-info-section .vm_contactform-title,
    .vm_contactform-form-section .vm_contactform-heading {
        font-size: 1.6em; /* Slightly larger font for smaller screens */
    }

    .vm_contactform-info-section .vm_contactform-paragraph,
    .vm_contactform-info-section .vm_contactform-info-item {
        font-size: 1.1em;
    }

    .vm_contactform-form-section .vm_contactform-label,
    .vm_contactform-form-section .vm_contactform-input,
    .vm_contactform-form-section .vm_contactform-textarea {
        font-size: 1.1em;
    }

    .vm_contactform-form-section .vm_contactform-submit-button {
        font-size: 1.2em;
        padding: 14px 24px;
    }
}


.vm_contactform-qr-code {
    width: 250px; /* Adjust size as needed */
    height: auto;
 	margin: 10px
}
.vm_contactform-heading-title {
    font-size: 2.6em;
	font-weight: bold;
    margin: 20px auto;
    color: #70411E;
}
