@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
}
body {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* width: 100dvw; */
  height: 100dvh;
  background-image: url(assets/bg-image-min.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom;
  -webkit-font-smoothing: antialiased;
  margin: 0 12px;
  overflow: hidden;
}
h1 {
  text-align: center;
  width: 100%;
}
p {
  text-align: justify;
}
.main {
  width: 100%;
  max-width: 500px;
  box-shadow: 1px 1px 3px 0 rgba(255, 255, 255, 0.21) inset,
    0 0 20px rgba(0, 0, 0, 0.5), -1px -1px 2px 0 rgba(255, 255, 255, 0.1) inset;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  padding: 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
label {
  font-weight: 900;
  margin-bottom: 8px;
}
.group {
  display: flex;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}
.form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

input {
  flex-grow: 1;
  font-size: 16px;
  color: #c6c6c6;
  padding: 8px 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 0;
  text-align: left;
  transition-duration: 0.2s;
  width: auto;
}

input:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #c6c6c6;
}

input:focus {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffff;
  outline: none;
  box-shadow: 0px 0px 0px 2px #ffff inset;
}

footer {
  flex: 0 0 auto;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
  color: #cccccc;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 16px;
}
footer a {
  color: #cccccc;
}

.footer-image {
  margin: 0;
  width: 20px;
}

#version {
  cursor: pointer;
}

/* Modal CSS */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-table {
  border-collapse: collapse;
}
.modal-content {
  background-color: hsla(0, 0%, 0%, 0.5); /* fallback for older browsers */
  margin: 15% auto;
  padding: 20px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  width: 500px;
  max-width: 70vw;
  line-height: 1.5;
}
.modal-table tr {
  vertical-align: top;
}
.modal-table tr:not(:last-child) {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.modal-table td {
  padding: 20px 0px;
}
.modal-table td:not(:first-child) {
  padding-left: 10px;
}
.modal-table td:not(:first-child) {
  padding-left: 10px;
}
.modal-table ol,
.modal-table p {
  margin: 0;
}

.close {
  color: #cccccc;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #77d3fb;
  text-decoration: none;
  cursor: pointer;
}
