html {
    overflow: hidden;
  }

  /* body {background-image: linear-gradient(#d9e8f2, #FFFFFF);} */

  body {
    margin: 0;
    overflow: hidden;
    background-color: black;
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* Base Blob Style */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(67px);
}

.blue {
    background: radial-gradient(circle, rgba(0, 100, 255, 0.8), rgba(0, 0, 0, 0));
    animation: pulseback 20s infinite ease-in-out alternate, moveBlue 20s infinite ease-in-out;
    top: 150px;
    left: 100px;
}
.red {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.7), rgba(0, 0, 0, 0));
    animation: pulseback 20s infinite ease-in-out alternate, moveRed 20s infinite ease-in-out;
    bottom: -150px;
    right: -150px;
    z-index: -1;
}
@keyframes pulseback {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0.9;
    }
}
@keyframes moveBlue {
    0% {
        top: 150px;

    }
    50% {
        top: 70vh;
    }
    100% {
        top: 150px;
    }
}
@keyframes moveRed {
    0% {
        bottom: -150px;
    }
    50% {
        bottom: 70vh;
    }
    100% {
        bottom: -150px;
    }
}

  .landscape {display:none;}
  .MapWrapper {display:none;}

.background-container{
position: fixed;
top: 0;
left:0;
bottom: 0;
right: 0;
background-image: url(images/UHS.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
}


.rightsidebar{display:none;}
    .leftsidebar{display:none;}

#message {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  color: #00FFFF;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 10px;
  margin-top: -60px;
  padding-left: 10px;
  animation: pulsate 2s ease-out infinite;
}

#message span {
  background: linear-gradient(#00FFFF, #00FFFF);
  background-clip: text;
  color: transparent;
}

@keyframes pulsate {
  0% { opacity: 0.7; }
  50% { opacity: 1.0; }
  100% { opacity: 0.7; }
}


.countdown {
padding-top: 10px; width: 100%;
}

.countdown p {
display: inline;
font-size: 16px;
color: #FFFFFF;
font-family: Lato, sans-serif;
white-space: nowrap;
}

.text-center{
	color:#fff;
	text-transform:uppercase;
  font-family: "lato", sans-serif;
  font-weight: 700;
  font-size: 50px;
    margin: -50px 0 0px 0;
    display: block;
    text-align: center;
    -webkit-animation: saturate 5.0s ease-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@-webkit-keyframes saturate {
  0%, 100%  { -webkit-filter: saturate(none); }
  50% { -webkit-filter: saturate(10); }
}

.contentwhite {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100vh;
}


.box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgb(0, 0, 0); */
	border-radius: 50%;
	padding: 10px;
  text-align: center;
  color: #FFFFFF;
  font-family: "lato", sans-serif;
  font-size: 12px;
  /* border: 1px solid #00FFFF; */
}



.bass{
	position:absolute;
	left:49%;
	top:49%;
	transform: translate(-50%,-50%);
    background-color: rgba(0, 0, 255, 0.7);
	border-radius:30px;
	padding:60px 100px;
  padding-bottom: 5px;
  text-align: center;
  color: #FFFFFF;
  font-family: "lato", sans-serif;
  font-size:20px;
}
.input-container{
	position:relative;
	margin-bottom: 15px;
}
.input-container label{
	position:absolute;
  font-family: "lato", sans-serif;
	top:0px;
	left:0px;
	font-size:16px;
	color:#fff;
    pointer-event:none;
	transition: all 0.5s ease-in-out;
}
.input-container input{
  border:0;
  border-bottom:1px solid #555;
  background:transparent;
  width:100%;
  padding:8px 0 5px 0;
  font-size:16px;
  color:#fff;
  text-align: center;
}
.input-container input:focus{
 border:none;
 outline:none;
 border-bottom:1px solid #e74c3c;
}
.btn{
	color:#fff;
	/*background-color:#4284f3;*/
  background-color:#033352;
	outline: none;
  border: 1px #FFFFFF solid;
  color: #fff;
	padding:5px 10px;
	text-transform:uppercase;
	border-radius: 20px;
	cursor:pointer;
	position: relative;
  float:right;
}

.gbutton{width: 200px; height: 50px; border-radius: 10px; margin-bottom: 5px;}
.logo{width: 300px; height: 300px; border-radius: 50%; border: 1px solid #000000; background-color: white; opacity:1;}



/* make the link look like a button container */
.google-login a {
  display: inline-block; 
  padding: 15px; 
  border-radius: 50%; 
  /* background-color: rgba(255,255,255,0.9); */
  background-color: #006ba0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none; 
  cursor: pointer;
  transition: box-shadow 0.2s;
}

/* on hover, lift the “button” */
.google-login a:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  background-color: #d02130;
}

/* enlarge the logo slightly on hover */
.google-login a:hover .logo {
  opacity: 1; 
  transform: scale(1.05);
  transition: transform 0.2s, opacity 0.2s;
}






.input-container input:focus ~ label,
.input-container input:valid ~ label{
	top:-12px;
	font-size:12px;

}

/* LOGIN TOGGLE SWITCH */
.login-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the entire container */
  gap: 10px;
  font-size: 16px;
}

.login-toggle-switch {
  width: 80px;
  height: 30px;
  /* background: linear-gradient(to right, #ff6666 0%, #ffffff 50%, #66b3ff 100%); */
  /* background-color: #66b3ff; */
  background-color: #CCCCCC;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* Knob */
.login-toggle-knob {
  width: 18px;
  height: 28px;
  /* background: #033352; */
  background: #255279;
  color: #FFFFFF;
  border-radius: 50px;
  position: absolute;
  left: 30px; /* Default middle position */
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-size: 14px;
  /* border: 1px solid #999; */
  transition: left 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0 5px;
}

/* Left (UMS) */
.login-toggle-switch.active-left {
  /* background: #66b3ff; */
  background: #FFFFFF;
}

.login-toggle-switch.active-left .login-toggle-knob {
  left: 5px; /* Moves left */
}

/* Right (UHS) */
.login-toggle-switch.active-right {
  /* background: #66b3ff; */
  background: #FFFFFF;
}

.login-toggle-switch.active-right .login-toggle-knob {
  left: 65px; /* Moves to the right */
}



.after_space{margin-bottom: 60px; width: 100%;}



@media only screen and (max-device-width: 760px)
{


  .after_space{margin-bottom: 100px; width: 100%;}

 /* LOGIN TOGGLE SWITCH */
 .login-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 40px;
}

.login-toggle-switch {
  width: 150px;
  height: 60px;
  /* background: linear-gradient(to right, #ff6666 0%, #ffffff 50%, #66b3ff 100%); */
  background-color: #CCCCCC;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-toggle-knob {
  width: 40px;
  height: 54px;
  background: #255279;
  color: #FFFFFF;
  border-radius: 50px;
  position: absolute;
  left: 25px;
  text-align: center;
  line-height: 54px;
  font-weight: bold;
  font-size: 40px;
  border: 1px solid #999;
  transition: all 0.3s ease !important;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0 10px;
  transition: left 0.3s ease; 
}


.login-toggle-switch.active-left {
  background: #FFFFFF;
}

.login-toggle-switch.active-left .login-toggle-knob {
  left: 0px;
}


.login-toggle-switch.active-right {
  background: #FFFFFF;
}

.login-toggle-switch.active-right .login-toggle-knob {
  left: 140px;
}






.rightsidebar{display:none;}
    .leftsidebar{display:none;}


  #message {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    color: #00FFFF;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 10px;
    margin-top: -60px;
    padding-left: 10px;
    animation: pulsate 2s ease-out infinite;
  }
  
  #message span {
    background: linear-gradient(#00FFFF, #00FFFF);
    background-clip: text;
    color: transparent;
  }
  
  @keyframes pulsate {
    0% { opacity: 0.7; }
    50% { opacity: 1.0; }
    100% { opacity: 0.7; }
  }
  

  .background-container{
  position: fixed;
  border-top: 10px solid #000000;
  top: 39%;
  left:0;
  bottom: 0;
  right: 0;
  background: radial-gradient(ellipse at bottom, #3768bc 0%, #000033 100%);
  overflow: hidden;
  }

  .background-image{
  position: fixed;
  top: 0;
  left:0;
  bottom: 50%;
  right: 0;
  background-image: url(images/UHS.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;

  overflow: hidden;
  }


  p {
  display: inline;
  font-size: 35px;
  margin-top: 0px;
  color: white;
  font-family: Lato, sans-serif;
  }

  .countdown {
  padding-top: 10px; width: 100%;
  }

  .countdown p {
  display: inline;
  font-size: 35px;
  color: #FFFFFF;
  font-family: Lato, sans-serif;
  white-space: nowrap;
  }

  .text-center{
  	color:#fff;
  	text-transform:uppercase;
    font-family: "lato", sans-serif;
    font-weight: 700;
    font-size: 90px;
      margin: -50px 0 0px 0;
      display: block;
      text-align: center;
      -webkit-animation: saturate 5.0s ease-out;
      -webkit-animation-iteration-count: infinite;
      background: -webkit-linear-gradient(white, #38495a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      white-space: nowrap;
  }

  @-webkit-keyframes pulsate {
    0% { opacity: 0.7; }
    50% { opacity: 1.0; }
    100% { opacity: 0.7; }
  }

@-webkit-keyframes saturate {
  0%, 100%  { -webkit-filter: saturate(none); }
  50% { -webkit-filter: saturate(10); }
}

  .box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgb(0, 0, 0); */
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    color: #FFFFFF;
    font-family: "lato", sans-serif;
    font-size: 30px;
  }

  .bass{
  	position:absolute;
  	left:49%;
  	top:49%;
  	transform: translate(-50%,-50%);
      background-color: rgba(0, 0, 255, 0.7);
  	border-radius:30px;
  	padding:60px 100px;
    padding-bottom: 5px;
    text-align: center;
    color: #FFFFFF;
    font-family: "lato", sans-serif;
    font-size:20px;
  }

  .input-container{
  	position:relative;
  	margin-bottom: 20px;
  }
  .input-container label{
  	position:absolute;
    font-family: "lato", sans-serif;
  	top:0px;
  	left:0px;
  	font-size: 45px;
  	color:#fff;
    pointer-event: none;
  	transition: all 0.5s ease-in-out;
  }
  .input-container input{
    border:0;
    border-bottom:1px solid #CCCCCC;
    background:transparent;
    width:100%;
    height: 100px;
    padding:20px 0 2px 0;
    text-align: center;
    font-size:40px;
    color:#fff;
  }
  .input-container input:focus{
   border:none;
   outline:none;
   border-bottom:1px solid #FFFFFF;
  }
  .btn{
  	color:#fff;
    font-size: 30px;
  	background-color:#033352;
	outline: none;
  border: 1px #FFFFFF solid;
  color: #fff;
  	padding:10px 20px;
  	text-transform:uppercase;
  	border-radius: 30px;
  	cursor:pointer;
  	position:relative;
    float:right;
  }

  .gbutton{width: 400px; height: 100px; border-radius: 20px; margin-bottom:20px;}
  .logo{width: 500px; height: 500px; border-radius: 50%; background-color: white; opacity:1; border: 1px solid #000000; }


  /* make the link look like a button container */
.google-login a {
  display: inline-block; 
  padding: 30px; 
  border-radius: 50%; 
  /* background-color: rgba(255,255,255,0.9); */
  background-color: #006ba0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none; 
  cursor: pointer;
  transition: box-shadow 0.2s;
}

/* on hover, lift the “button” */
.google-login a:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  background-color: #d02130;
}

/* enlarge the logo slightly on hover */
.google-login a:hover .logo {
  opacity: 1; 
  transform: scale(1.05);
  transition: transform 0.2s, opacity 0.2s;
}
 

  .input-container input:focus ~ label,
  .input-container input:valid ~ label{
  	top:-12px;
  	font-size: 35px;

  }


  #warning-message { display: none; }
 
  @media only screen and (orientation:landscape){
    body {background-image: none;}
    .logoholder {display:none;}
    .background-container{display:none;}
    .rightsidebar{display:none;}
    .leftsidebar{display:none;}
    .background-image{display:none;}
    .countdown{display:none;}
    .box{display:none;}
    #wrapper { display:none; }
    #warning-message { display:block; }
    html {overflow: auto;}
  }

  @media only screen and (orientation:portrait){
      #warning-message { display:none; }
  }

  .MapWrapper {display:block; margin-top: 10px;}

  .landscape {
    font-size: 30px;
    color: #000000;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    font-family: 'Lato';
    z-index: -1;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    }

/* img.map3 {
  width: 100%;
  height: auto;
  margin: 0px 1px 0px 1px;
}

img.map4 {
  width: 100%;
  height: auto;
  margin: 10px 1px 0px 1px;
} */


  }
