@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&family=Sixtyfour&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins',sans-serif;
}
 /*Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/*Edge and Firefox */
body,html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url(https://user-images.githubusercontent.com/13468728/233847739-219cb494-c265-4554-820a-bd3424c59065.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.overlay {
  position: fixed;
  width: 100vw;
  height: 100%;
  z-index: 1001;
  display: flex;
}

#mkc img {
  position: absolute;
  height: 5rem;
  width: 5rem;
  left: 35%;
  top: 30%;
  z-index: 10000;
  color: #bcbbc4;
  padding: 0.2em 0.4em;
  font-size: 28vw;

}

.bar {
  width: 10vw;
  margin: 0;
  padding: 0;
  height: 105vh;
  background: white;
}

#demo {
  height: 100px;
  position: absolute;
  width: 250px;
  top: 40%;
  left: 40%;
  border: none;
  background: transparent;
  font-family: "Protest Guerrilla", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* color: red; */
  font-size: 7rem;
  z-index: 10000;

}
#nav {
  height: 100px;
  width: 100%;
  /* background-color: #4343ea; */
  display: flex;
  align-items: center;
  /* padding: 0 120px; */
  gap: 180px;
  top: 0px;
  left: 30px;
  font-weight: 500;
  position: absolute;
  justify-content: center;
  color: white;
  z-index: 1;

}
.Menu-Btn {
  display: none;
}

nav {
  background: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);

}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  background: #f0f0f0;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 77vh;
  width: 250px;
  z-index: 999;
  color: black;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}


.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}
@media (min-width: 100px) and (max-width: 1300) {
  body{
    min-height: 114vh;
  }
}
@media (max-width: 800px) {

  .Menu-Btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 3vw;
  }
  .hideOnMobile {
    display: none;
  }

  .overlay {
    display: none;
  }

  .counter {
    display: none;
  }
  #nav img {
    height: 3rem;
  }

  #nav svg {
    margin-right: 2.5rem;
    cursor: pointer;
  }
  .svg-clr {
    fill: rgb(0, 0, 0);
  }
  body {

    min-height: 108vh;
    overflow: hidden;
    overflow-y: hidden;
  }
}
.nav1 {
  display: flex;
  align-self: center;
  justify-content: space-evenly;
  gap: 3vw;
}


#nav img {
  height: 8rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 3vw;
}

#nav img:hover {
  height: 9rem;
  /* transform: translateY(-5px); */
}
#nav h4 {
  text-transform: uppercase;
  /* font-weight: 400; */
  cursor: pointer;
  font-size: 1.35vw;
  /* transition: all 0.3s; */
  letter-spacing: 0.1rem;
  transition: letter-spacing 0.5s ease-in-out, color 0.5s ease-in-out;
}

#nav h4:hover {
  color: white;
  /* transform: translateY(-5px); */
  letter-spacing: 0.3rem;

}

#nav a:link {
  color: white;
  text-decoration: none;
}
#nav a:visited {
  color: white;
  text-decoration: none;
}
#nav a:active {
  color: white;
  text-decoration: none;
}
.Nav_btn{
  border: 1px solid white;
  background: none;
  padding: 10px 30px;
  display: inline-flex;
  font-size: 15px;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  margin: 10px;
  color: white;
  letter-spacing: 1px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.Nav_btn::before{
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%,-50%);
  width: 0px;
  height: 0px;
  background: white;
  border-radius: 50%;
  transition:  width 0.5s, height 0.5s;
}
.Nav_btn:hover{
  color: black;
  transition: all linear 0.8s;
}
.Nav_btn span
{
 position: relative;
 z-index: 100;
}
.Nav_btn:hover::before
{
  width: 300px;
  height: 300px;

}

section {
    position: relative;
    max-width: 400px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(11px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
}

h1 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    max-width: 310px;
    border-bottom: 2px solid #fff;
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

input:focus ~ label, 
input:valid ~ label {
    top: -5px;
}

.inputbox input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0 35px 0 5px;
    color: #fff;
}

.inputbox ion-icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2rem;
    top: 20px;
}

.forget {
    margin: 35px 0;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
 
}

.forget label {
    display: flex;
    align-items: center;
}

.forget label input {
    margin-right: 3px;
}

.forget a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 180px;
}

.forget a:hover {
    text-decoration: underline;
}

.stylish-btn {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: rgb(255, 255,255, 1);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.stylish-btn:hover {
  background-color: rgb(255, 255,255, 0.5);
}

.register {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

.register p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/* .register p a:hover {
    text-decoration: underline;
}
.register-btn{
    padding-left: 150px;
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 1.35vw;
    font-weight: 900;
    /* color: crimson; 
} */
.link:hover{
    letter-spacing: 0.2em;
    color:greenyellow;
}