INICIO

<!DOCTYPE html>
<html lang=”es”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Formulario de Agendamiento</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

form {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
}

label {
display: block;
margin-bottom: 8px;
}

input,
select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

input[type=”submit”] {
background-color: #4caf50;
color: #fff;
cursor: pointer;
}
</style>
</head>
<body>

<form action=”#” method=”post”>
<label for=”nombre”>Nombre:</label>
<input type=”text” id=”nombre” name=”nombre” required>

<label for=”fono”>Teléfono:</label>
<input type=”tel” id=”fono” name=”fono” required>

<label for=”club”>Club:</label>
<input type=”text” id=”club” name=”club” required>

<label for=”direccion”>Dirección:</label>
<input type=”text” id=”direccion” name=”direccion” required>

<label for=”email”>Email:</label>
<input type=”email” id=”email” name=”email” required>

<label for=”cantidad_pelotas”>Cantidad de Pelotas:</label>
<select id=”cantidad_pelotas” name=”cantidad_pelotas” required>
<option value=”0-50″>0 a 50 (15,000)</option>
<option value=”100-200″>100 a 200 (23,000)</option>
<option value=”mas_de_200″>Más de 200 (Por confirmar)</option>
</select>

<input type=”submit” value=”Agendar Retiro”>
</form>

</body>
</html>