@charset "UTF-8";
:root {
  --background: #fff;
  --link-color: #4b7bb9;
  --color-primary: #fff;
  --bg-footer: #002780;
  --color-footer: #fff;
  --bg-expired: #800080;
  --pad-container: 1rem;
  --logo-subtitle-color: #114789b3;
}

@media screen and (max-width: 600px) {
  :root {
    --pad-container: 0.5rem;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  background-color: var(--background);
  margin: 0;
  padding: 0;
  margin-top: -1px;
  padding-top: 1px;
}

.page-wrapper,
#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(#0055ff);
}

h1 {
  font: normal 800 1.45rem/2.725rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h2 {
  font: normal 500 1.35rem/1.625rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h3 {
  font: normal 800 1.2rem/1.375rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h4 {
  font: normal 500 1.1rem/1.375rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h5 {
  font: normal 800 1.075rem/1.125rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h6 {
  font: normal 800 1rem/1.125rem -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-transform: uppercase;
}

/*************************************************
 * Table */
table {
  width: 100%;
  border: thin solid #f3f3f3;
  border-spacing: 0;
  border-collapse: separate;
}

table th {
  text-align: left;
  border: 0 solid #f3f3f3;
  background-color: #275285;
  color: white;
  padding: 0.25rem;
}

table tr.new td {
  color: #0f7444;
}
table tr.deleted td {
  text-decoration: line-through;
  color: rgb(208, 14, 14);
}
table tr.deleted td button {
  text-decoration: line-through;
}

table td {
  border-top: thin solid #f3f3f3;
  padding: 0.25rem;
  line-break: anywhere;
}
table td.group {
  background-color: #c6e0ff !important;
  font-size: 1.25rem;
}
table td.no-result {
  background-color: #bee3ff;
  text-align: center;
  padding: 0.5rem;
}
table td.expire-soon {
  color: #ca1122;
}
table td div.is-temporary {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  align-self: center;
}

table tr:nth-child(odd) td {
  background-color: #f4f4f4;
  border-top: thin solid #d8d8d8;
}

table tr:nth-child(even) td {
  background-color: #ebebeb;
}

table td.options {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

ul.no-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.no-list li {
  display: flex;
}

table td.forms {
  vertical-align: bottom;
}

/*************************************************
 * Navigation */
header {
  display: flex;
  flex-direction: row;
  padding: 0;
  position: sticky;
  top: 0;
  background: linear-gradient(45deg, #fcfcfc, #fefefe);
  border-bottom: thin #f3f3f3 solid;
}
header .logo {
  display: block;
  margin-left: 0.85rem;
}
header .sub-title {
  text-align: left;
  margin-left: 1.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  padding-top: 0;
  color: var(--logo-subtitle-color);
}
header img {
  height: 3rem;
}

nav {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

ul.navbar {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  height: 100%;
  align-items: center;
}

ul.navbar li {
  padding: 0;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: center;
}
ul.navbar li.right {
  margin-left: auto;
}

ul.navbar li.right {
  margin-left: auto;
}

ul.navbar li a {
  padding: 0.5rem 0.25rem;
  margin: 0;
  height: 100%;
  color: var(--link-color);
  align-content: center;
}
ul.navbar li a:hover {
  background: #f6f6f6;
}

/*************************************************
 * Main container */
main {
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 100%;
  width: 90%;
}

footer {
  font-size: 0.75rem;
  margin-top: auto;
  padding: 2rem 1rem;
  border-top: 1px solid #e5e5e5;
  line-height: 2;
  background: var(--bg-footer);
  color: var(--color-footer);
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer a {
  text-decoration: none;
  border-bottom: 2px solid #e9e9e9;
  color: #a9bcff;
  padding: 0 0.25rem 0.25rem 0.25rem;
}
footer a:hover {
  border-bottom: 2px solid #b076ff;
  color: #b076ff;
}
footer p {
  padding: 0 0.25rem 0.25rem 0.25rem;
}

/*************************************************
 * Form and input fields */
form p {
  position: relative;
}
form section {
  position: relative;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

input,
select,
textarea {
  border-radius: 0.4rem;
  line-height: 1.75rem;
  padding: 0.25rem;
  background: #fafafa;
  border: 2px solid #cdcdcd;
}

input[type=text],
input[type=email],
input[type=password] {
  padding: 0.25rem;
  width: 100%;
  max-width: 25rem;
}

input[type=text]:required,
input[type=email]:required,
input[type=password]:required {
  padding: 0.25rem 2rem 0.25rem 0.25rem;
}

label:has(> input:checked) {
  font-weight: bold;
}

input[type=checkbox] {
  margin: 0 1rem;
}

button,
input[type=button],
input[type=submit] {
  border-radius: 0.4rem;
  line-height: 1.75rem;
  padding: 0.25rem 0.5rem;
  background: #e7e7e7;
  border: 2px solid #cdcdcd;
  box-shadow: 0px 0.5rem 0.75rem -0.5rem inset #f8f8f8;
  cursor: pointer;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background: #d7d7d7;
  cursor: pointer;
}

button:disabled,
button[disabled],
input[type=button]:disabled,
input[type=button][disabled] {
  cursor: not-allowed;
}
button:disabled:hover,
button[disabled]:hover,
input[type=button]:disabled:hover,
input[type=button][disabled]:hover {
  background: #e7e7e7;
  border: 2px solid #cdcdcd;
}

label {
  line-height: 1.75rem;
  display: block;
  position: relative;
  width: 100%;
  max-width: 25rem;
}

/* Form pseudo classes */
input + span {
  position: relative;
}

/* Required parameter */
li:has(> input:checked) {
  font-weight: bold;
}

/* Validation parameter */
input + span::before {
  position: absolute;
  right: 0.75rem;
  top: 0;
  font-weight: 700;
}

input:invalid {
  border: 2px solid red;
}

input:invalid + span::before {
  content: "✖";
  color: red;
}

input:valid + span::before {
  content: "✓";
  color: green;
}

button#toggle-password {
  background: none;
  color: #cbcbcb;
  border: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  /* Display at the top right of the container */
  position: absolute;
  top: 0;
  right: 0;
}

/*************************************************
 * Pages */
.page {
  flex: 1 0 auto;
  width: 100%;
}
.page.signin {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
  min-height: 100vh;
}
.page.signin .billboard {
  padding: 1rem;
  flex: 1 1 100%;
  display: flex;
  background: radial-gradient(#1c2a35, rgba(28, 42, 53, 0.9098039216));
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page.signin .billboard h1 {
  font-size: 2rem;
  background-image: linear-gradient(to right, #ff947e 45%, #ee4b2b);
  color: transparent !important;
  background-clip: text !important;
  -webkit-background-clip: text;
}
.page.signin form {
  padding: 1rem;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(rgba(28, 42, 53, 0.1019607843), rgba(28, 42, 53, 0.0196078431));
}
.page.signin label {
  line-height: 1.75rem;
}
.page.signin input[type=text],
.page.signin input[type=password] {
  border-radius: 0.4rem;
  line-height: 1.75rem;
  padding: 0.25rem;
  background: #ffffff;
  border: 2px solid #e0e0e0;
}
.page.signin input:required + span::after {
  display: none;
}
.page.signin input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0px 0.25rem rgba(206, 206, 206, 0.25);
}
.page.signin button {
  padding: 0.25rem 1.5rem;
  line-height: 1.75rem;
  border: 2px solid #3144b3;
  background: #3F51B5;
  color: #fbfbfb;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: unset;
}
.page.signin button:hover {
  background: #1c3a86;
  border-color: #4e4ecd;
  color: #d2d4f0;
}

.download__section,
.invitation__section {
  background: #e3f3ff;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.download__section h3,
.invitation__section h3 {
  color: #2b6a86;
}
.download__section h4,
.invitation__section h4 {
  color: #2b8674;
  word-break: break-all;
}
.download__section .result__section,
.invitation__section .result__section {
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

ul.files {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
ul.files li {
  padding: 0.5rem;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
}
ul.files textarea {
  width: 100%;
  min-height: 30vh;
}

/*************************************************
 * Media queries */
@media screen and (max-width: 600px) {
  nav {
    margin-left: unset;
    width: 100%;
    padding: 0.5rem;
  }
  ul.navbar {
    flex-direction: column;
  }
  ul.navbar li {
    border-bottom: 1px solid #e3e7fe;
  }
  ul.navbar li.right {
    margin-left: unset;
  }
  ul.navbar li a {
    width: 100%;
  }
  table td.expire-time {
    font-size: 0.5rem;
  }
  .page.signin {
    flex-direction: column;
  }
  .page.signin .billboard {
    flex: 0 1 100%;
  }
  .page.signin .billboard h1 {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=lib.min.css.map */
