img[alt="logo"] {
  display: block;
  margin: 25px auto;
  width: 200px;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "apple-system, BlinkMacSystemFont", "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/background.png") no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(10px);
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}
   
button {
  padding: 10px 20px;
  background-color: #e50914;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1em;
  font-weight: 700;
  text-shadow: 2px 2px 4px #000;
  position: relative;
  box-shadow: 0 2px 25px rgba(255, 0, 0, 0.5);
}

a:link { 
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  text-shadow: 2px 2px 4px #000;
}

button:hover {
  background-color: #ff0000;
}

.btn {
  padding: 10px 20px;
  background-color: #e50914;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px;
  font-size: 1em;
  font-weight: 700;
  text-shadow: 2px 2px 4px #000;
}

.btn:hover {
  background-color: #ff0000;
}

@media screen and (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }

  input[type="email"] {
    width: 90%;
  }

  .btn {
    width: 90%;
    margin: 10px auto;
  }

  p {
    white-space: normal;
  }
}
