/* Estilo general del formulario */
form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo de las etiquetas */
form label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Estilo de los campos de entrada */
form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Estilo del botón */
form button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Estilo del reCAPTCHA */
.g-recaptcha {
    margin: 10px 0;
}

/* Título del formulario */
form h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}
/* Contenedor del formulario e imagen */
form + div {
    text-align: center;
    margin-top: 20px;
}

form + div img {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
