@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-container {
    max-width: 800px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form-header h1 {
    color: #333;
    font-weight: 700;
}

.contact-form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    justify-content: space-between;

}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    flex: 1;
}

.form-group label {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 95%;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 10px 20px;
    background-color: #6200ea;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #3700b3;
}

.social-media-buttons {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers children horizontally */
    padding: 20px;
    margin: 10px; /* Updated this line to center the container itself */
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 200px;
 /* Ensures padding and border are included in the width */
}

.social-button {
    width: 140px;    /* Set button width equal to QR code width */
    margin-right: 5px; /* Add margin to the right of buttons */
    padding: 10px;   /* Padding for the text inside the buttons */
    margin-bottom: 8px; /* Space between the buttons vertically */
    color: #fff;     /* Text color inside the buttons */
    text-align: center; /* Center the text inside the buttons */
    border-radius: 4px; /* Rounded corners for the buttons */
    text-decoration: none; /* Remove underline from text */
    font-weight: bold; /* Bold font for the button text */
    display: block; /* Display as a block-level element */
    background-color: #000; /* Temporary background color, change as needed */
    text-transform: uppercase; /* Optional: Transform text to uppercase */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for depth */
    transition: background-color 0.3s; /* Smooth transition for hover effects */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}



/* ... rest of the styles ... */


.social-button-instagram {
    background-color: #C13584;
}

.social-button-facebook {
    background-color: #3b5998;
}

.social-button-whatsapp {
    background-color: #25D366;
}

.qr-code {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* This is already correct for centering the image */
}

.qr-code img {
    width: 100%;
    max-width: 145px; /* Adjust this if you want a different size */
    height: auto;
    border-radius: 4px;
}


