/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav{
  height: 80px;
  width: 100%;
  backdrop-filter: blur(20px);
}

.navbar{
  padding: 0 15px;
}

.nav-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.logo a{
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  color: black;
  margin-left: 40px;
}

li{
  list-style: none;
  display: inline-block;
}

li a{
  color:black;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 30px;
  padding: 10px;
  transition: .3s linear;
  border-radius: 10px;
  curosr: pointer;
}

li a:hover{
  background-color: black;
  color: white;
}
.sign.active{
  background-color: black;
}

.sign.active{
  color: white;
}

button{
  transition: .3s linear;
  margin-left: 10px;
  padding: 11px;
  width: 90px;
  border-radius: 10px;
  border:none;
  cursor: pointer;
}
button a{
  font-size: 15px;
  font-weight: bold;
  color: black;
}

button a:hover{
  color: white;
}

.reg:hover{
  background-color: black;
}

.container{
  margin: 100px;
}

form{
  width: 360px;
  height: 360px;
  background: transparent;
  border: 2px solid white;
  backdrop-filter: blur(20px);
  border-radius: 10px;
}

.title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-bottom: 20px;
}

h2{
  font-size: 24px;
  color: black;
}

.box{
  display: flex;
  flec-direction: column;
  align-items: center;
}


.sign{
  margin-right: 40px;
}

input[type=text] input[type=password] {
  width: 300px;
  height: 52px;
  font-size: 14px;
  margin-bottom: 25px;
  padding-left: 15px;
  border: 2px solid white;
  background: transparent;
  border-bottom: 2px solid white;
  border-radius: 25px;
  outline: none;
}

.btn{
  width: 300px;
  height: 52px;
  font-size: 18px;
  margin: 15px 0 5px 0;
  cursor: pointer;
  border: none;
  background-color: white;
  border-radius: 25px;
  color: black;
  transition: .2s linear;
}

.btn:hover{
  background-color: black;
  color: white;
}

.text{
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.remember{
  color: black;
  font-size: 14px;
  transition: .3s linear;
  cursor: pointer;
}

.remember:hover{
  color: black;
}


.forgot-password{
  font-size: 14px;
}

.forgot-password a{
  text-decoration: none;
  color: black;
}

.forgot-passoword a:hover{
  text-decoration: underline;
}



  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  








  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  