body,
html {
  overflow: hidden;
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  color: #050505 !important;
}

.bg-text {
  background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSnsNO_tNXgNsI90fDh4HdJ3iEPZwtiVUK2Sg&s);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.btn-info {
  background: #8c649b;
}

.form-outline {
  display: flex;
  justify-content: center;
}

.form-outline input {
  max-width: 15rem;
  background: white;
}

.bg-image {
  /* The image used */
  background-image: url("./news.jpg");

  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 40%;
  padding: 20px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .bg-text {
    width: 80%;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
  flex-direction: row;
}

#__react-alert__ *{
  color: #f1f1f1 !important;
}