body {
  margin: 0;
  padding: 0;
  top: 0;
  background-image: linear-gradient(to right, #0E0E0E 50%, #0E0E0E);
}
#alert_email_used{
  position: absolute;
  padding: 5px 10px 7px 5px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  background-color: #fff;
  font-size: 14px;
  box-shadow: 2px 5px 10px 0px #000;
  top: 48px;
  left: calc(50% - 92px);
  transition: all 1s ease;
  transform: scale(0.85);
  pointer-events: none;
  opacity: 0;
}
#alert_email_used.show_alert{
  transform: scale(1);
  opacity: 1;
}
#alert_email_used svg{
  margin-right: 5px;
}
#alert_email_used::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0%;
  margin-left: 10px;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: rotate(180deg);
}
#background_landing {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../files/background_rigabona.png);
  object-fit: cover;
}
.container_banner_rigabona{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_rigabona{
  width: 420px;
  height: auto;
}
.text_content{
  font-size: 18px;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-align: center;
}
.input_content, .input_content::placeholder{
  width: 100%;
  height: 40px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #c4c4c4;
  background-color: #4A4A4A;
  outline: none;
  border-radius: 3px;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.container_button{
  width: 100%;
  display: flex;
  justify-content: center;
}
.container_button a:link{
  text-decoration: none;
}
.iniciar_quiz {
  width: 300px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #F1C600;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.iniciar_quiz:hover {
  background-color: #F1C600;
  color: #ffffff;
}
.container_logo_rigabona{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_logo_rigabona{
  width: 350px;
  height: 60px;
}

@media(orientation:portrait){
  .banner_rigabona{
    width: 100%;
    height: auto !important;
  }
  .container_logo_rigabona img {
    width: 100%;
  }
  .text_content{
    font-size: 14px;
  }
  .iniciar_quiz{
    width: 100%;
    font-size: 16px;
  }
  a{
    width: 100%;
  }
}