.cursor-pointer {
  cursor: pointer;
}

:root {
  --va-background-border: #262824 !important;
  --va-form-element-border-radius: .5rem !important;
  --va-input-font-size: inherit !important;
  --va-input-wrapper-text-color: #e5e7eb !important;
}


.AppRoot {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #0e0d39, #1a1943);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.AppRoot__Content {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 25em;
  max-height: 56em;
  border-radius: 1em;
  box-shadow: 0 0 1em 2px rgba(0, 0, 0, 0.25);
}

.DefaultBackground__Overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgb(0, 0, 0));
}



@media (max-width: 500px) {
  .AppRoot__Content {
    max-width: unset;
    max-height: unset;
    border-radius: unset;

  }
}