/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root{
  --primary-color : #54FF9F;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  
}
.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

.m-side{
  margin-top: 80px;
display: flex;
flex-direction: column;
align-items: center;
}


.main {
  /*background: red;*/
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.header{
  width:100%;
  position:fixed;
  display: inline;
  z-index: 1;
  background-color: white;
}
.topbar{
margin-top:0px;
background-color: #ffffff;
width:100%;

padding:4px 0;
}
.topbar a{
  text-decoration: none;
}
.navbar {
  margin-top:30px;
  background-color: #f1f1f1;
  display: flex;
  position: relative;
  width:100%;
  justify-content: space-between;
  font-size: 1rem;
  overflow: hidden;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
}
.navbar ul{
  display: flex;  
  list-style: none;
}
.navbar li{
  list-style: none;
  text-decoration: none;
  padding:0.6rem;
  float:left;
  margin-right: 10px;
  
}
.navbar a{
  text-decoration: none;
color:#000000;
}
.navbar li:hover {
  background-color: rgb(252, 198, 117);
  color:#FF1000;
  font-size: 1.4rem;
}
.navbar a:hover{
  text-decoration: none;
color:black;
}
.checkbtn {
  font-size: 30px;
  color: white;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}
/* Account page  */
.account-page{
  padding: 50px 0;
  background: url('../images/Msp-reg-banner1.jpg')
  
  }
  .form-container{
    background: #fff;
    width: 300px;
    height: 400px;
    position:relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  .form-container span{
    font-weight: bold;
    padding: 0 10px;
    color: #555
    cursor: pointer;
    width: 100px;
    display: inline-block;
    }
    .form-btn{
      display: inline-block;
  
    }
    .form-container form{
      max-width: 300px;
      padding: 0 20px;
      position: absolute;
      top:100px;
      transition: transform 1s;
   
    }
    .form-container form input{
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
    }
    .form-container form select{
      width: 100%;
      height: 30px;
      margin: 10px 0;
      padding: 0 10px;
      border: 1px solid #ccc;
      }
    .form-container form button{
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    font-weight: bold;
    padding:5px;
      border-radius:25px;
    }
    .form-container form button:focus{
      outline: none;
    }
    #LoginForm{
      left: -300px;  
    }
    #RegForm
   {
    left:0px;
   } 
   #Indicator{
    width: 100px;
    border: none;
    background: #ff523b;
    height:3px;
    margin-top: 8px;
    /*transform: translateX(65px); */
    transition: transform 1s;
  
   }
   .account-page img{
    max-width:350px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    
  }
  #username{
    font-weight: bold;
    font-size: 12px;
  }
   .event-timer{
    font-size: xx-large; 
    color:rgb(90, 16, 3); 
    padding:2px; margin-top:-50px;
    font-weight:bolder;text-align:center; 
    background-color:rgba(255, 255, 255, 0.5)
  }