* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #191919;
  text-transform: uppercase;
}

.container {
  display: flex;
  border-radius: 15px;
  background: #750e21;
  height: auto;
  min-height: 50vh;
  flex-direction: column;
  text-align: center;
  box-shadow: 0px 0px 10px 2px #e3651d;
}

.container h1 {
  color: #bed754;
  text-align: center;
  margin: 18px;
  font-size: 3rem;
  text-transform: uppercase;
}

.container label {
  color: #bed754;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 5px 5px 5px 23px;
}

.container input {
  width: 80%;
  color: #e3651d;
  font-size: 2rem;
  background-color: #191919;
  outline: none;
  border-radius: 10px;
  border: 2px solid #e3651d;
  padding: 5px 10px;
  font-weight: 700;
  margin: 0px auto;
}

.container button {
  background-color: #e3651d;
  font-size: 2rem;
  padding: 10px;
  font-weight: 700;
  color: #191919;
  outline: none;
  border: 2px solid #bed754;
  border-radius: 40px;
  margin: 14px 30px;
  transition: 0.5s ease-out;
  text-transform: uppercase;
}

.container button:hover {
  background-color: #191919;
  color: #e3651d;
}

@media (max-width:451px) {
  .container {
    width: 90%;
  }

  .container h1 {
    font-size: 2rem;
  }

  .container input {
    width: 95%;
  }
}

@media (max-width:348px) {
  .container h1 {
    font-size: 1.7rem;
  }
}