*, *:before, *:after{
  box-sizing: inherit;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Work Sans', sans-serif;

}
html{
  box-sizing: border-box;
}
body{
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  overflow: hidden;
  background-color: #912421;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e1e1e' fill-opacity='0.18' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
.contenedor {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
}
.fondo{
  background-color: #abd7ec;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.62' fill-rule='evenodd'/%3E%3C/svg%3E");
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: hidden;
  position: relative;
}
.fondo::-webkit-scrollbar{
  width: 8px;     /* Tamaño del scroll en vertical */
  height: 8px;    /* Tamaño del scroll en horizontal */
}
.fondo::-webkit-scrollbar-thumb{
  background: #D97F36;
  border-radius: 4px;
}
.cabecera {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  width: 100%;
  height: 56px;
  justify-items: center;
  align-items: center;
  color: #1e1e1e;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
}
.cabecera a {
  display: flex;
  align-items: center;
}
.icon-atras{
  width: 45%;
}
.icon-logo {
  width: 100%;
}

.footer {  
  width: 100%;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 0;
  text-align: center;
  font-size: 0.6rem;
  color: #292929;
  padding: 0.4rem 0;
}
.footer a {
  text-decoration: none;
  color: #292929;
  font-weight: 600;
}
@media (min-width: 425px) {
  .contenedor {
    padding: 1em;
  }
  .fondo {
    border-radius: 20px;
    width: 415px;
  }
}
