*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Century Gothic", sans-serif;
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

nav{
  position: absolute;
  top: 10px;
  right: 50px;
  z-index: 2000;
  transition: 0.2s;
}

nav ul{
  list-style: none;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

nav ul li{
  display: inline-block;
  padding: 12px 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}

nav ul li:nth-child(1){
  border: none;
}

nav ul li a{
  color: #000;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
}

nav .mini-menu{
  list-style: none;
  background: none;
  border-radius: 10px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border: none;
  position: absolute;
  top: 10px;
  right: -200px;
}

nav .mini-menu li{
  display: inline-block;
  padding: 7px 10px;
  border-left: none;
}

nav .mini-menu li a{
  color: #000;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding-bottom: 2.5px;
  transition: 0.3s;
  border-bottom: 1px dashed #000;
}

nav .mini-menu li a:hover{
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);

}

section{
  width: 100%;
  height: 100vh;
  background: url(img/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}

.loginInfo{
  font-weight: 600;
  font-family: "Century Gothic", sans-serif;
  font-size: 25px;
  color: #fff;
  position: absolute;
  top: 200px;
}

.box{
  width: 400px;
  background: #fff;
  height: auto;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}

form{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.heading{
  color: #000;
  font-weight: 550;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: "Century Gothic", sans-serif;
  width: 100%;
  text-align: center;
}

form p{
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: "Century Gothic", sans-serif;
}

form a{
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: "Century Gothic", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

form a:hover{
  color: #2b7cd1;
}

form .form__div{
  position: relative;
  height: 48px;
  width: 100%;
  margin-bottom: 30px;
}

form .form__div__textarea{
  position: relative;
  height: 200px;
  width: 70%;
  margin-bottom: 30px;
}

form .form__input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  border: 1px solid #585858;
  border-radius: .5rem;
  outline: none;
  padding: 1rem;
  background: none;
  z-index: 1;
}

form .form__div .eye{
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 1000;
}

form .form__div .eye i{
  font-size: 15px;
  color: #000;
  cursor: pointer;
}

form .form__div .eye #hide{
  display: flex;
}

form .form__div .eye #hide1{
  display: none;
}


form .form__textarea{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  border: 1px solid #585858;
  border-radius: .5rem;
  outline: none;
  padding: 1rem;
  background: none;
  z-index: 1;
}

form .form__label{
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  padding: 0 .25rem;
  background-color: #fff;
  color: #585858;
  font-size: 18px;
  transition: 0.3s;
}

form .form__button{
  height: 40px;
  border: 1px solid #000;
  background: none;
  border-radius: 10px;
  padding: 5px 10px;
  outline: none;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 18px;
  color: #000;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
}

form .form__button:hover{
  opacity: 1;
  border: 1px solid #2b7cd1;
  background: #2b7cd1;
  color: #fff;
}

form .form__textarea:focus + .form__label{
  top: -.5rem;
  left: .8rem;
  color: #2b7cd1;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}

form .form__textarea:not(:placeholder-shown).form__textarea:not(:focus)+ .form__label{
  top: -.5rem;
  left: .8rem;
  font-size: 13px;
  font-weight: 500;
  z-index: 10;
}

form .form__input:focus + .form__label{
  top: -.5rem;
  left: .8rem;
  color: #2b7cd1;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}

form .form__input:not(:placeholder-shown).form__input:not(:focus)+ .form__label{
  top: -.5rem;
  left: .8rem;
  font-size: 13px;
  font-weight: 500;
  z-index: 10;
}

form .form__select{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  border: 1px solid #585858;
  border-radius: .5rem;
  outline: none;
  padding: 1rem;
  background: none;
  z-index: 1;
}

form .form__select + .form__label{
  top: -.5rem;
  left: .8rem;
  color: #585858;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}

form .form__input:focus{
  border: 2px solid #2b7cd1;
}

form .form__textarea:focus{
  border: 2px solid #2b7cd1;
}

footer{
  position: absolute;
  bottom: 30px;
  right: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 5000;
}

footer .textBox a{
  color: #fff;
  font-size: 14px;
  font-family: "Century Gothic", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 20px;
  position: relative;
  top: 0;
  left: 0;
  transition: 0.3s;
}

footer .textBox span{
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 100%;
}

footer .textBox a:hover span{
  animation: span 0.2s ease-in;
  background: #2b7cd1;
}

footer .copyrightText p{
  color: #fff;
  font-size: 14px;
  font-family: "Century Gothic", sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 5px;
  transition: 0.3s;
}

@keyframes span {
  0%{
    left: 50%;
    width: 0%;
  }
  100%{
    left: 0;
    width: 100%;
  }
}

@media (max-width: 991px) {
  header{
    padding: 20px 30px;
    z-index: 1000;
  }
  .menu{
    position: fixed;
    top: 80px;
    left: -100%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  header ul li a{
    color: #111;
    font-size: 24px;
    margin: 10px;
  }
}
