body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(90deg, #62daca, #10d4a9);
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

input {
  height: 2.5rem;
  border: none;
  outline: none;
  padding: 0 1rem;
  color: #0c121b;
  border-radius: 0.3rem;
}

input:focus {
  border: none;
}

button {
  margin: 1rem 0;
  height: 2.5rem;
  cursor: pointer;
  border: none;
  border-radius: 0.3rem;
  background: #85e92c;
  font-weight: bold;
  text-transform: uppercase;
  color: #0c121b;
}

form {
  display: grid;
  border: 1px solid #0c121b;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  width: 15rem;
  gap: 0.5rem;
  background: #0c121b;
  text-align: center;
}

img {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

form p {
  display: grid;
  color: white;
  margin: 0;
  text-align: left;
}

h1 {
  margin: 0;
  color: white;
}

span {
  color: white;
  font-weight: bold;
}

.client-api {
  background-color: #0c121b;
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
}

.error {
  position: absolute;
  bottom: 2rem;
  background-color: #FF1744;
  padding: 1rem 2rem;
  display: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  left: 50%;
  transform: translateX(-50%);
}
