main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}


.main-logo {
  width: 377px;
  height: 128px;
  background-color: var(--text);
  -webkit-mask: url(/resources/logo/logo-big.svg) no-repeat center;
  mask: url(/resources/logo/logo-big.svg) no-repeat center;
}


form {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 16px;
  gap: 16px;
  border-radius: 8px;
  background-color: var(--surface);

  >* {
    height: 44px;
    /* Makes all boxes match sizes (looks nice)*/
    text-align: center;
  }
}