/* Our default values set as CSS variables */
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
/*Import material ui theming*/
@import url(/Global/material-ui/tokens.css);
@import url(/Global/material-ui/colors.module.css);
@import url(/Global/material-ui/typography.module.css);
@import url(/Global/material-ui/theme.light.css) (prefers-color-scheme: light);
@import url(/Global/material-ui/theme.dark.css) (prefers-color-scheme: dark);

:root {
  --modern-white: var(--md-sys-color-background);
  --muted-gray: var(--md-sys-color-surface-variant);
  --dodgerblue: var(--md-sys-color-primary);
  --dodger-blue: var(--md-sys-color-primary);
  --mixed-burple: #5d8fdb;
}

/* Basic page style resets */
* {
  box-sizing: border-box;
  border-radius: 10px;
}
[hidden] {
  display: none !important;
}
body {
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" -25, "opsz" 24;
}

/* Style the header with a grey background and some padding */
.header {
overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    border-bottom: 2px solid var(--muted-gray);
    border-radius: 0px;
    height: 50px;
    min-height: 50px;
  padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
  float: left;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  font-size: 18px;
}
.unreg-account-container {
  margin-right: 5px;
  margin-left: 5px;
  
}
.unreg-account-container a{
  height: 45px;
  width: 90px;
  margin-right: 5px;
  margin-left: 5px;
 color: white;
    background-color: var(--mixed-burple);
  display: flex;
   align-items: center;
  justify-content: center;
  align-content: center;
    font-size: 20px;

}
.header .header-nav {
  color: white;
    background-color: var(--mixed-burple);
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.header img.logo {
  font-size: 26px;
  background-color: var(--mixed-burple);
  color: white;
  width: 45px;
  height: 45px;
}

.header img:hover {
  background-color: white;
  color: var(--mixed-burple);
}
.header img.active {
  background-color: var(--dodgerblue);
  color: white;
}
.header-right {
  float: right;
  display: flex;
}

/*alert box*/
/* The alert message box */
.popupWrapper {
    padding: 15px;
  width: 50%;
  color: white;
  opacity: 1;
  transition: opacity 0.5s;
   position: fixed; 
    bottom:0%;
    width:100%; 
  font-weight: bold;
  font-size: 24px;
}
.alert {
  background-color: #f44336; /* Red */
}
.warn {
  background-color: #7F5F01; /* Red */
}
.info {
  background-color: #26306e; /* Red */
}
.circles {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  transition-property: background-color;
  transition-duration: 1s;
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background-color: var(--md-sys-color-on-primary-container);
  opacity: 60%;
  animation: animateCircles 50s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
.slideInFromBottom {
  animation: slideInFromBottom 0.5s ease-in-out both;
}
@keyframes slideInFromBottom {
  0% {
    transform: translateZ(-1400px) translateY(800px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes animateCircles {
  0% {
    transform: translateY(0) rotate(0deg);
    border-radius: 0;
    opacity: 25%;
  }
  50% {
    opacity: 10%;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a.active {
    background-color: inherit;
    color: black;
  }
}
