
body {
  font-family: morganchalk;
  align-items: center;
  justify-content: center;
  display: flex;
}
.container {
    position: relative;
    text-align: center;
}
.background-box {
  width: 650px;
  height: 490px;
  display: block;
  margin: 0 auto;
}

.content {
  position: relative;
  bottom: 300px;
}
.arrow {
  width: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
  left: 120px;
  position: relative;
}
h1 {
  color: white;
}

input[type="password"] {
  padding: 10px;
  width: 200px;
  font-size: 16px;
  font-family: morganchalk;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.arrow:hover {
  transform: scale(1.2);
}