body{
    overflow-x: hidden;
}

#form-section{
    display: flex;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #000;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
}

.info-form{
    width: 50%;
    margin: auto 60px;
}

.info-form h2{
    font-weight: 700;
    margin: 40px 0 20px 0;
    font-size: 2rem;
    color: #06383b ;
}

.info-form p{
    font-size: 1.5rem;
    color: #06383b;
}

.form-contact {
    width: 50%;
    max-width: 600px;
    margin: auto 50px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Título del formulario */
.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Estilos para las etiquetas de los campos */
label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    display: block;
}

/* Estilos para los campos de entrada */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

textarea {
    resize: vertical;
}

/* Estilos para el botón de envío */
button {
    width: 100%;
    padding: 12px;
    background-color: #1e7ce7;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

/* Estilo para los campos obligatorios */
input[required], select[required], textarea[required] {
    border: 2px solid #000000;
}

input[required]:focus, select[required]:focus, textarea[required]:focus {
    outline: none;
    border-color: #000000;
}

@media (max-width: 768px) {
    #form-section{
        flex-direction: column;
    }
    .form-contact{
        width: 90%;
    }
}