/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: Montserrat;
  src: url("../../public/Montserrat-VariableFont_wght.ttf");
}
:root {
  --background-color: white;
  --alt-background-color: #EEE;
  --text-color: #555;
}

i {
  font-size: 1.2em;
  line-height: 1em;
}

#network-status {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
  padding: 0.5em;
  z-index: 1000;
}

.minidenticon {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.5em;
}

html {
  height: 100%;
}

body {
  position: relative;
  height: 100%;
  font-family: Montserrat, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow: hidden;
}

.btn,
button {
  background-color: #134a5c;
  color: white;
  padding: 0.5em 1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus, .btn:hover,
button:focus,
button:hover {
  background-color: #1c6c86;
}
.btn:disabled,
button:disabled {
  background-color: #CCC;
  color: #999;
  cursor: not-allowed;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.offline {
  pointer-events: none;
}
.offline input, .offline select, .offline textarea {
  background-color: #EEE;
  color: #999;
  cursor: not-allowed;
}
.offline button {
  background-color: #CCC;
  color: #999;
  cursor: not-allowed;
}

.core-modalForm {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.core-modalForm-hidden {
  display: none;
}

.core-modalForm-content {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr auto;
  min-height: 200px;
  max-height: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--background-color);
  box-sizing: border-box;
  border: 1px solid #999;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  max-width: 600px;
}
.core-modalForm-content .core-modalForm-content-header {
  padding: 0.25em;
  border-bottom: 1px dotted #CCC;
}
.core-modalForm-content .core-modalForm-content-header:empty {
  display: none;
}
.core-modalForm-content .core-modalForm-content-header h2 {
  text-align: center;
  font-size: 1.6em;
}
.core-modalForm-content .core-modalForm-content-element {
  overflow: auto;
  padding: 0.25em;
}
.core-modalForm-content .core-modalForm-content-footer {
  padding: 0.25em;
  border-top: 1px dotted #CCC;
}
.core-modalForm-content .core-modalForm-content-footer:empty {
  display: none;
}
.core-modalForm-content .core-modalForm-content-footer .core-modalForm-content-footer-buttons {
  display: grid;
  grid-auto-flow: column;
  gap: 0.25em;
}

.commonForm h1, .commonForm h2, .commonForm h3 {
  text-align: center;
}
.commonForm h1 {
  font-size: 2em;
}
.commonForm h2 {
  font-size: 1.6em;
}
.commonForm h3 {
  font-size: 1.4em;
}
.commonForm label {
  border-bottom: 1px dotted #ccc;
}
.commonForm input, .commonForm select, .commonForm textarea {
  box-sizing: border-box;
  min-width: 0;
  height: 2.5em;
  border: 1px solid #999;
}
.commonForm input:disabled, .commonForm select:disabled, .commonForm textarea:disabled {
  color: #888;
}
.commonForm input, .commonForm textarea {
  padding: 0.25em 0.25em;
}
.commonForm select {
  padding: 0;
}
.commonForm button {
  min-height: 2.5em;
}
.commonForm button:focus, .commonForm button:hover, .commonForm button:active {
  background-color: #134a5c;
}
.commonForm strong {
  font-weight: bold;
}

.commonGrid {
  display: grid;
  gap: 0.25em;
  align-items: flex-end;
}
.commonGrid .span2 {
  grid-column: span 2;
}
.commonGrid .span3 {
  grid-column: span 3;
}
.commonGrid .span4 {
  grid-column: span 4;
}
.commonGrid .span5 {
  grid-column: span 5;
}

.core-modalForm {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.core-modalForm-hidden {
  display: none;
}

.core-modalForm-content {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr auto;
  min-height: 200px;
  max-height: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--background-color);
  box-sizing: border-box;
  border: 1px solid #999;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  max-width: 600px;
}
.core-modalForm-content .core-modalForm-content-header {
  padding: 0.25em;
  border-bottom: 1px dotted #CCC;
}
.core-modalForm-content .core-modalForm-content-header:empty {
  display: none;
}
.core-modalForm-content .core-modalForm-content-header h2 {
  text-align: center;
  font-size: 1.6em;
}
.core-modalForm-content .core-modalForm-content-element {
  overflow: auto;
  padding: 0.25em;
}
.core-modalForm-content .core-modalForm-content-footer {
  padding: 0.25em;
  border-top: 1px dotted #CCC;
}
.core-modalForm-content .core-modalForm-content-footer:empty {
  display: none;
}
.core-modalForm-content .core-modalForm-content-footer .core-modalForm-content-footer-buttons {
  display: grid;
  grid-auto-flow: column;
  gap: 0.25em;
}

.core-loginForm .core-modalForm-content {
  max-width: 400px;
}
.core-loginForm .core-modalForm-content-element {
  padding-top: 200px;
  background-image: url("../img/logo.png");
  background-position: top center;
  background-repeat: no-repeat;
}
.core-loginForm .core-modalForm-content-element .section1 {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.25em;
  padding: 0.25em;
}
.core-loginForm .core-modalForm-content-element.message {
  display: none;
  grid-column: span 2;
  padding: 0.25em;
  background-color: #FFC;
  color: #993;
  border: 1px solid #993;
  border-radius: 0.25em;
  text-align: center;
}
.core-loginForm .core-modalForm-content-element.message:not(:empty) {
  display: block;
}

.core-loginForm a {
  color: #134a5c;
  text-decoration: none;
  font-size: 12px;
  margin-top: 10px;
  display: block;
  text-align: right;
  cursor: pointer;
}
.core-loginForm a:hover {
  text-decoration: underline;
}
.core-loginForm .message {
  margin-bottom: 2rem;
}
.core-loginForm .message ul {
  list-style-type: circle;
}

/*# sourceMappingURL=login.css.map */
