/* Minimal legacy theme.css replacement.
   This exists to keep the old templates looking consistent while we migrate.
*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --primary-color: #1563C0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

.fe-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100svw;
  text-align: center;
  background-image: url("../media/BG-OA.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

.body-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  color: var(--primary-color);
  position: absolute;
  top: 1%;
  left: 5%;
}

.body-title img {
  max-width: 25px;
  height: auto;
  margin-right: .5rem;
}
