@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  transition: filter 0.5s ease;
  position: absolute;
  background-color: rgb(0, 0, 0);
  width: 99vw;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
a {
  color: white;
  text-decoration: none;
}
main {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* border: 1px solid red; */
}

main .main {
  background-image: url("../pictures/back.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 2px solid black;
  opacity: 0.9;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  background-color: rgba(3, 3, 4, 0.35);
  z-index: 1;
  color: white;
  display: flex;
  height: 60px;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 100%;
  margin: 0 auto;
}
nav div ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav div ul li {
  /* background-color: red; */
  list-style-type: none;
  padding: 0 23px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
nav div ul li a {
  color: rgb(254, 254, 254);
  text-decoration: none;
}
.logo:hover {
  color: #9b91db;
  border-color: #9b91db;
  cursor: pointer;
}

nav div ul li a:hover {
  color: #9b91db;
  cursor: pointer;
}
nav div ul li img:hover {
  filter: invert(0.5);
}

nav div ul li img {
  filter: invert(1);
}
.logo {
  border: 2px solid white;
  border-radius: 1px;
  padding: 7px;
}

.intro {
  position: absolute;
  top: 30%;
  /* border: 2px solid red; */
  border-radius: 30px;
  height: 40vh;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* background-color: rgba(61, 11, 99, 0.393); */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(to top left, hsla(0, 72%, 51%, 0.4) 0%, hsla(262, 83%, 58%, 0.4)); 
  background-color: hsla(222, 47%, 11%, 1);
  flex-direction: column;
}

a{
  text-decoration: none;
}

.page-logo
{
  width: 200px;
  top: 0;
}

.wrapper {
  /* width: 420px; */
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
 
  border-radius: 10px;
  padding: 30px 40px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 10px;
}

.wrapper:hover{
  box-shadow: 0 0 35px;
}
@media (max-width: 585px) {
  .wrapper {
      width: 100%;
      padding: 30px 20px;
  }
}

.wrapper h1 {
  text-align: center;
  font-size: 36px;
}

.wrapper .input-box {
  width: 100%;
  height: 50px;
  margin: 30px 0;
  position: relative;
}

.input-box input {
  width: 100%;
  height: 100%;
  padding: 20px 45px 20px 20px;
  font-size: 18px;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 40px;
  border: 2px solid #fff;
  color: #fff;
  
}

.input-box input::placeholder {
  color: #fff;
  
}

.input-box i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.input-box img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 10px;
  color: #fff;
  cursor: pointer;
  height: 30px;
  vertical-align: middle;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  margin: -15px 0 15px;
  font-size: 14.5px;
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 3px;

}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;

}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: #333;

}

.btn:hover {
  background: #f2f2f2;
}

.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.back {
  font-size: 40px;
}


span a {
  text-decoration: none;
  color: white;
}