:root {
  color-scheme: light dark;
}

html,
body {
  height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  background-color: #030711;
  color: #e1e7ef;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  line-height: 1.5rem;
}

a {
  text-decoration: none;
  color: #5172e1;
}

#right-bg,
#left-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  #right-bg {
    background-image: url("/static/right-bg.png");
    background-position: 100% 100%;
  }
}

#left-bg {
  background-image: url("/static/left-bg.png");
  background-position: 0 0;
}

#page-flex-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#page-grow-container {
  flex-grow: 1;
}

#login-ui-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#login-ui-container h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

#login-ui-card {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  background-color: #0d111c;
  border: 1px solid #1d283a;
  border-radius: 0.75rem;
  box-shadow: 0px 1px 3px 1px black;
  padding: 4rem;
}

#logo-container {
  text-align: center;
  margin-bottom: 4rem;
}

#company-name {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin: 0;
}

#logo {
  width: 150px;
}

@media (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: #0f172a;
  }

  a {
    color: #1e40af;
  }

  #login-ui-card {
    background-color: white;
    border-color: #e2e8f0;
    box-shadow: 0px 1px 2px 0px #0000000d;
  }
}
