body {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: var(--background-video);
  margin: 0;
}

.setup {
  margin: auto;
  padding: 2.5rem 2rem;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1a1a1f;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  gap: 1rem;
}

.welcome-image {
  max-width: 200px;
  width: 100%;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
}

.setup-title {
  font-size: 1.75rem;
  margin: 0;
  text-align: center;
}

.setup p {
  margin: 0;
  text-align: center;
  opacity: 0.7;
  font-size: 0.95rem;
}

.setup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;

  & input {
    width: 100%;
    box-sizing: border-box;
  }

  & button {
    margin: 0;
    padding: 0.75rem 0.5rem;
    justify-content: center;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.95rem;

    &:hover {
      filter: brightness(1.15);
    }
  }
}

.form-errors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--error);
  font-size: 0.9rem;
}