/* Estilo general para el contenedor del formulario */
.wpcf7 {
    max-width: 600px; /* Ancho máximo */
    margin: 20px auto; /* Centrado */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
}

/* Estilo para etiquetas */
.wpcf7 label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Estilo para campos de texto y áreas de mensaje */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Para que el padding no aumente el ancho */
    font-size: 16px;
}

/* Estilo al enfocar un campo */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

/* Estilo para el botón de envío */
.wpcf7 input[type="submit"] {
    background-color: #ec7016; /* Naranjo */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* Efecto al pasar el cursor sobre el botón */
.wpcf7 input[type="submit"]:hover {
    background-color: #cc5f0f; /* Naranjo más oscuro */
}