<form>
<label for="nombreA"> Nombre y Apellido</label>
<input type="text" id="nombreA" class="inpt-padron" required>
<label for="CorreoE"> Correo Electronico</label>
<input type="email" id="CorreoE" class="inpt-padron" required
placeholder="email@dominio.com">
<label for="Telefonoo"> Telefono</label>
<input type="tel" id="Telefonoo" class="inpt-padron" required
placeholder="(xx)xxxxxx">
<label for="mensaje"></label>
<textarea name="" id="mensaje" cols="70" rows="10" class="inpt-padron"></textarea>
<fieldset>
<legend class="test" id="test">Como desea ser contactado</legend>
<label for="radio-email"><input type="radio" name="contacto" value="email"
id="radio-email"> Email</label>
<label for="radio-telefono"><input type="radio" name="contacto" value="telefono"
id="radio-telefono"> Telefono</label>
<label for="radio-whatsapp"><input type="radio" name="contacto" value="whatsapp"
id="radio-whatsapp" checked> WhatsApp</label>
</fieldset>
<fieldset>
<legend>Que horario</legend>
<select>
<option>Mañana</option>
<option>Tarde</option>
<option>Noche</option>
</select>
</fieldset>