.contact-fields,
.societe-fields {
    display: flex;
    flex-direction: column;
}

.label-input-container {
    display: flex;
    flex-direction: column;
}

.label-input-container-horizontal {
    display: flex;
    flex-direction: row;
}

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

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Main Container */
main {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Title */
h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Container */
.contactContainer,
.societeContainer {
    margin-bottom: 20px;
}

/* Section Title */
h3 {
    font-size: 20px;
    /* Increase font size */
    font-weight: 700;
    margin-bottom: 15px;
    /* Increase margin */
}

/* Label */
label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}


/* Input */
input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
    width: calc(100% - 22px);
    /* Adjust based on the padding */
}

input.is-invalid {
    border-color: #dc3545;
    /* Red border color */
    margin-bottom: 0;
    /* Remove bottom margin */
}

/* Submit Button */
button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.just-validate-error-label {
    font-size: 14px;
    /* Adjust font size */
    margin-top: 5px;
    /* Add margin top */
    margin-bottom: 5px;
}

/* Horizontal container for address, city, and postal code */
.label-input-container-horizontal div {
    margin-right: 10px;
    /* Add right margin */
}

/* Last div in the horizontal container */
.label-input-container-horizontal div:last-child {
    margin-right: 0;
    /* Remove right margin for the last element */
}

/* Style the asterisk for required fields */
label span {
    color: #dc3545;
    /* Set color to red */
}