body, html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E5F9E0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #40C9A2;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
  display: block;
}

input:focus {
  border-color: #2BB67A;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #40C9A2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #2BB67A;
}
button:active {
  background-color: #2F9C95;
}
button:disabled {
  background-color: #bbe6cc;
  cursor: not-allowed;
}

.container {
  min-width: 512px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gnome-image img {
  max-width: 512px;
}

.spinner {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 5px solid transparent;
  border-top: 5px solid #2BB67A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}