* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(Images/Bg.jpg) no-repeat center center fixed;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(Images/Bg.jpg) no-repeat center center fixed;
  background-size: cover;
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  width: 100vw;
  z-index: 10;
  display: none;
}

header {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #25f6fd;
  text-shadow: 2px 2px 2px #000;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 40vh;
  width: 40vw;
  background: #202020;
  position: absolute;
  top: 30%;
  border-radius: 1rem;
  z-index: 20;
}

form label {
  padding: 0.5rem 0;
  width: 85%;
  margin: 0 auto;
  color: #25f6fd;
  font-weight: lighter;
  letter-spacing: 1px;
  font-size: 1.4rem;
  text-shadow: 2px 2px 2px #000;
}

form input {
  margin: 0 auto;
  width: 85%;
  padding: 0.2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

form input:focus {
  outline: none;
}

form #name {
  text-transform: capitalize;
}

form .form-actions {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

form .form-actions #submit {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.6rem;
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 14px;
  border: none;
  color: #25f6fd;
  background: #a76c00;
}

form .form-actions #submit:focus {
  outline: none;
}

form .form-actions #confirm {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.6rem;
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 14px;
  border: none;
  color: #25f6fd;
  background: #a76c00;
  display: none;
}

form .form-actions #confirm:focus {
  outline: none;
}

table {
  background: #202020;
  width: 40vw;
  position: absolute;
  top: 30%;
  left: 50%;
  color: #25f6fd;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px #000;
  border: 2px solid #fff;
  border-collapse: collapse;
}

table th {
  text-align: left;
  padding: 5px;
  font-size: 1.3rem;
  border: 2px solid #fff;
  border-collapse: collapse;
}

table td {
  border: 2px solid #fff;
  border-collapse: collapse;
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
}

table td:nth-of-type(1) {
  text-transform: capitalize;
}

table a {
  text-decoration: none;
  color: #25f6fd;
}

.highlighted {
  background: #ffffff;
  z-index: 100;
}

.backdrop-visible {
  display: block;
}

.confirm-visible {
  display: block !important;
}

.submit-notVisible {
  display: none !important;
}
/*# sourceMappingURL=style.css.map */