#heading h1 {
  font-size: 50;
  padding-top: 18px;
  color: rgb(29, 1, 1);
}
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-size: 25px;
  font-weight: 900;
}
body {
  background: rgb(245, 221, 9);
  background-size: cover;
  font-family: monospace, sans-serif;
  color: #000;
}

.wrapper {
  width: 450px;
  background-color: #ffffff;
  padding: 70px 40px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}
.container {
  width: 45%;
}
.container h1 {
  width: 800px;
  padding-bottom: 20%;
}
input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 2px solid #d2d2d2;
  outline: none;
  margin-top: 8px;
  padding: 0 10px;
}
input:focus {
  border-color: #3164ff;
}
