/*
//////////////////////////////////////////////////
// Cicero Fire District - Purchase Order System //
//////////////////////////////////////////////////
// Created by Brad Trammell                     //
//////////////////////////////////////////////////
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');

body {
  background-color: #777;
  font-family: 'Blinker', sans-serif;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

@use postcss-cssnext;
:root {
  --min-size: 2px;
  --max-size: 20px;
}

* {
  box-sizing: border-box;
}

html, body, .backdrop {
  height: 100%;
  width: 100%;
  margin: 0;
}

.mainlogo {
  background-image: url("/assets/images/logo.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 300px;
  padding: 150px;
  text-align: center;
}

.login-header {
  font-size: 20pt;
  font-weight: bold;
}
