:root {
  /* Primary Colors */
  --color-primary-dark: #0A1626;
  --color-primary: #3F768C;
  --color-primary-light: #025949;
  --color-accent: #66D955;
  --color-background: #F2F2F2;

  /* Additional Variations */
  --color-primary-dark-shade: #07101A;
  --color-primary-lighter-shade: #6499AD;
  --color-primary-light-shade: #014D37;
  --color-accent-lighter-shade: #95F37E;
  --color-background-dark-shade: #D6D6D6;
}

body {
  font-family: Open Sans;
  font-size: 15px;
  color: #383838;
  margin: 0;
}

#BackgroundVideo {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}
.label-with-styles {
  background-color: var(--color-background-dark-shade);
  border: 1px solid black;
  border-radius: 5px;
  color: #025949;
  padding: 10px; /* Adjust as needed */
  margin: 10px; /* Adjust as needed */
  font-size: 20px;
  font-weight: bold;
  
}

.MenuBtn {
  align-items: center;
  background: #417994;
  background-image: linear-gradient(144deg, var(--color-primary), var(--color-primary-light) 50%, var(--color-primary-light-shade));
  border: none;
  border-radius: 8px;
  box-shadow: 0px 1px 10px #bbb, rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-family: Open Sans, Phantomsans, Arial, sans-serif;
  font-size: 35px;
  font-weight: 600;
  justify-content: center;
  line-height: 1em;
  padding: 50px;
  margin: auto;
  margin-top: 100px;
  max-width: 50%;
  min-width: 140px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.MenuBtn span {
  padding: 1px 200px 1px 200px;
}
@media (max-width: 1024px) { /* For tablets */
  body {
    font-size: 13px;
  }
  .MenuBtn {
    font-size: 30px !important; /* Increased font size for tablets */
    padding: 20px 30px !important; /* Increased padding for tablets */
    max-width: 70% !important; /* Button will take the full width */
    margin-top: 150px !important; /* Increased margin-top for better spacing */
  }
}

@media (max-width: 768px) { /* For mobile phones */
  body {
    font-size: 10px;
  }
  .MenuBtn {
    font-size: 30px !important; /* Increased font size for tablets */
    padding: 20px 30px !important; /* Increased padding for tablets */
    max-width: 70% !important; /* Button will take the full width */
    margin-top: 150px !important; /* Increased margin-top for better spacing */
  }
}


.consentBox {
  display: none;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  margin-left: 50px;
}

.consentBox h1 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary-light);
}

.consentBox p {
  font-weight: bold;
  text-align: justify;
  color: var(--color-primary-light);
  font-size: 25px;
}

.consentBox .form-check {
  margin-bottom: 5px;
  font-size: 25px;
  
}

.consentBox .form-check-input {
  margin-right: 10px;
  
}

@media (max-width: 1024px) {
  body {
    font-size: 11px;
  }
  .MenuBtn {
    font-size: 18px;
    padding: 20px 30px;
    max-width: 70%;
  }
  .consentBox {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 8px;
  }
  .MenuBtn {
    font-size: 13px;
    padding: 10px 20px;
    max-width: 90%;
  }
  .consentBox {
    margin-top: 10px;
    font-size: 20px !important;
  }
}


@media (max-width: 768px) {
  .consentBox {
    padding: 15px;
    margin-left: 20px;
  }

  .consentBox h1 {
    font-size: 35px;
  }

  .consentBox p {
    font-size: 20px !important;
  }

  .consentBox .form-check {
    font-size: 20px !important;
  }
}

#NextDiv {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 11vh;
  margin-right: 1rem;
}

#NextBtn {
  margin: 0;
  padding: 10px 20px;
  background: #417994;
  background-image: linear-gradient(144deg, var(--color-primary), var(--color-primary-light) 50%, var(--color-primary-light-shade));
  border: none;
  border-radius: 5px;
  box-shadow: 0px 1px 10px #bbb, rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  color: #fff;
  font-family: Open Sans, Phantomsans, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

#NextBtn:hover {
  background: var(--color-primary-light);
}

#nav {
  overflow: auto;
  min-width: 650px;
  text-align: center;
  justify-content: space-between;
  display: flex;
  background-color: white;
  border-bottom: 1px solid #FFFFCC;
  border-top: 1px solid #FFFFCC;
  padding: 2%;
}

#fLogo {
  float: left;
  max-width: 150px;  /* adjust based on your requirement */
  height: auto;  /* maintain aspect ratio */
}

#sLogo {
  float: right;
  max-width: 200px;
  height: auto;
}

#nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.AnnouncementBox {
display: none;
  position: relative; /* Relative position will help position the child elements like the exit button */
  background: white; /* Just to ensure the background is solid; you can set any other color or remove this */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow for a lifted effect */
  text-align: center; /* Centering the text inside */
}