/* Estilo general para el body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* Estilo para el contenedor principal */
h1 {
    color: #333;
}

/* Estilo para formularios */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0  0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
}

/* Estilo para etiquetas */
label {
    display: block;
    margin: 10px 0 5px;
}

/* Estilo para inputs de texto */
input[type="text"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Estilo para el botón de enviar */
input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #218838;
}

/* Estilo para el enlace */
a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}
