@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #09090b;
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  position: relative;
}

.logo {
  position: absolute;
  top: 10px;
  left: 20px;
  background: #adfa1d;
  color: #09090b;
  padding: 8px 16px;
  border-radius: 8px;
}

input {
  background: #09090b;
  color: white;
  border: 1px solid hsl(240, 3.7%, 15.9%);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 20px;
}

button {
  background: rgb(250, 250, 250);
  color: #09090b;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}
button:hover {
  background: rgba(250, 250, 250, 0.9);
}

.credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  opacity: 0.5;
}