html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url(braseria2.jpeg);
}

form {
  max-width: 400px;
  margin: 0 auto;
}

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

.formulario-cuerpo {
  background-color: #f3e8c8;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

button {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

h1 {
  text-align: center;
}

h2 {
  background-color: #f3e8c8;
  padding: 10px;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

a.boton-enlace {
  display: block;
  padding: 10px 20px;
  margin-left: 35%;
  margin-right: 35%;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.gdpr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.label_gdpr {
  width: fit-content;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 20px;
}

.checkbox_gdpr {
  width: auto;
  margin-left: 10px;
}

.side-deco-left {
  display: none;
}

.side-deco-right {
  display: none;
}

.div5{
  flex-direction: column;
}

.container-checkbox{
  display:flex;
  padding-top: 2%;
}

@media screen and (min-width: 900px) {

  .side-deco-left {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 30%;
    height: 100vh;
  }

  .side-deco-right {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    height: 100vh;
  }

  @media screen and (max-width: 600px){

    .gdpr > .container-checkbox{
      /* 
        poner algo de CSS, el checkbox y el label se ven mal en resoluciones perqueñas
      */
    }
  }

}