@font-face {
  font-family: "Squirk";
  src: url("../squada.ttf");
}

/* Logo images */
body {
  background: #004c8f;
  padding-top: 10%;
  background-repeat: no-repeat;
  background-size: cover;
}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Glass-like background with loading bar */
.glass {
  background: rgba(9, 87, 156, 0.44);
  border: 1px solid #5ea0da;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  position: relative;
  z-index: 5;
}
.big-logo {
  margin: 0 auto;
  margin-bottom: 50px;
  width: 200px;
  height: 200px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.loading-bar {
  width: 100%;
  height: 20px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0px -3px 2px rgba(0, 0, 0, 0.21),
    inset 0px 2px 6px rgba(0, 0, 0, 0.13);
}
.loading-progress {
  width: 0%;
  height: 100%;
  background: #004c8f;
  border-radius: 10px;
}
.loading-text {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  font-family: "Squirk", sans-serif;
}
/* Full-width image */
.full-width {
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.heading {
  font-family: "Squirk", sans-serif;
  color: #fff;
  text-align: center;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 16px;
}

.contain {
  margin-left: 40px;
  margin-right: 40px;
}

p {
  font-family: "Squirk", sans-serif;
  color: #fff;
  font-size: 16px;
  text-align: left;
}

input,
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  box-sizing: border-box;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
}

form input {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  border-bottom: 4px solid #a5d5ff;
  width: 100%;
  background: #0e6bbc;
  box-shadow: none;
  border-color: none;
  color: #fff;
  font-size: 14px;
}

input::placeholder {
  color: #89c6fb;
  font-size: 14px;
}

button {
  display: inline-block;
  padding: 16px 36px;
  background-image: url("../images/button_bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: -50px;
}

button:hover {
  filter: brightness(0.8) contrast(1.2);
}

.radio-group {
  display: flex;
  flex-direction: column;
}

label {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}

input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #A5D5FF;
}

input[type="radio"]:checked + .checkmark::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #004C8F;
}

.label-text {
  font-size: 16px;
  font-family: "Squirk", sans-serif;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* Desktop styles here */
  body{
    padding-top: 10px;
  }
  .logo {
    width: 20%;
  }
  .glass {
    margin-left: 35%;
    margin-right: 35%;
  }
  .full-width{
    z-index: -1;
  }
}

.music-toggle-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  z-index: 10000;
}

.music-toggle {
  display: inline-block;
  padding: 10px 20px;
  background-image: url("../images/button_bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  text-align: center;
  color: #fff;
  z-index: 99;
}

th,
td {
  padding: 10px;
}

.glass2 {
  background: rgba(9, 87, 156, 0.44);
  border: 1px solid #5ea0da;
  border-radius: 10px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-collapse: separate !important;
}

.glass2 thead {
  background: rgba(17, 136, 241, 0.64);
}
