h1 {
  text-align: center;
  padding: 50px;
  color: white
}

body {
  height: 100vh;
  font-size: 20px;
  background-color: rgb(76, 141, 141);
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.background-piggybank {
  background: linear-gradient(rgba(223, 204, 204, 0.6), rgba(144, 119, 119, 0.9)),
    url("/assets/piggy.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding: 0;
  position: relative;
  margin: 0
}

h2 {
  text-align: center;
  padding-top: 20px;
}

.buttons-logging-registration {
  display: flex;
  justify-content: center;
  gap: 50px;
}

button {
  background: green;
  width: 135px;
  height: 40px;
  border-radius: 20px;
  font-weight: 600;
}

button:hover{
  cursor: pointer;
  background-color: rgb(37, 98, 24);
}


@media (max-width: 767px){
  body{
    box-sizing: border-box;
  }

  .background-piggybank {
    width: 100%;
    min-height: 100vh;
    height: auto;
  }

  .buttons-logging-registration {
    flex-direction: column;
    align-items: center;
  }

  h2{
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container__sign-up{
    margin-bottom: 20px;
  }
}