body, html {
  margin: 0;
  padding: 0;
}


.header {
  z-index: 9999; /* This will put the overlay on top of everything */
  display:block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9vh;
  background: linear-gradient(90deg, #BBD8E5 0%, #23607B 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-top: 1.5vh;
  color: white;
  /*font-size: 2vh;*/
  font-family: sans-serif;
  font-weight: 700;
}

.logo {
  margin-top: 7px;
  margin-left:35px;
  font-size: 4vh;
}
.logo a{
  text-decoration: none;
  color: white;
}

.links a {
  color: white;
  margin-right: 20px;
  font-size: 2vh;
  text-decoration: none;
}

.links a:hover {
  color: #505050;
}



.links a:last-child {
  margin-right: 0;
}
.container {
  z-index: 1;
  position: absolute;
  width: 100%;
  margin: 0 auto;
}
.background-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(270deg, rgba(245, 245, 245, 0.70) 0%, rgba(17, 105, 142, 0.70) 88%);
  opacity: 0.7;
  /*z-index: -1;*/
}



.buttons {
  z-index: 2; /* This will put the overlay on top of everything */
  position: absolute;
  top: 70vh;
  left: 58px;

}

.button {
  z-index: 2; /* This will put the overlay on top of everything */
  width: 15vw;
  height: 5vh;
  margin-bottom: 20px;
  background: #09599A;
  box-shadow: 0px 5px 15px rgba(37, 44, 97, 0.15);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 2vh;
}
#btnlogin{
  background: #09599A;
}

#btnlogin:hover{
  background: #004679;
}
.button:hover{
  background: #004679;
  cursor: pointer;
}

.button-inner {
  color: white;
  font-size: 2vh;
  font-family: sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.msgBox{
  position: relative;
  background: darkred;
  border-radius: 10px;
  margin:auto;
  width: 30%;
  top:18vh;
  opacity: 95%;
  z-index: 9998;
  text-align: center;
  font-family: sans-serif;
  color: white;
}



.FormBox {
  z-index: 5;
  display: block;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  top: 15vh;
  margin-bottom: auto;
  width: 40%;
  height: 60vh;
  position: relative;
  background: #2F6D89;
  border-radius: 50px;
  /*opacity: 0.95;*/
}

.back-btn{
  text-decoration: none;
  margin-left: 5px;
  margin-top: 5px;
  color: #6F6F6F;
}
.back-btn:hover{
  cursor: pointer;
}



/* Base styles for larger screens */
.links a {
    display: inline-block;
    /* other styling */
}

/* Hamburger icon */
.hamburger {
    display: none;
    /* styling for the icon */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .links a {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
