* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url("black-panther-landscape-oaschcik0l3hcdik.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }
  .wrapper {
    width: 400px;
    color: #fff;
    background: transparent;
    border-radius: 15px;
    padding: 30px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .wrapper h1 {
    text-align: center;
    font-size: 40px;
  }
  .wrapper .input-box {
    position: relative;
    /* background-color: darkgreen; */
    width: 100%;
    height: 50px;
    margin: 30px 0;
  }
  .wrapper .letter {
    color: rgb(74, 55, 222);
  }
  .input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
  }
  .input-box input::placeholder {
    color: #fff;
  }
  .input-box i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  .wrapper .check-forgot {
    display: flex;
    justify-content: space-between;
    margin: -15px 0px 15px;
  }
  .check-forgot label input {
    accent-color: #fff;
    text-decoration: none;
    margin-right: 4px;
  }
  .check-forgot a {
    text-decoration: none;
    color: #fff;
  }
  .check-forgot a:hover {
    text-decoration: underline;
  }
  .wrapper .btn {
    width: 100%;
    height: 45px;
    background: rgb(74, 55, 222);
    border: none;
    outline: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
  }
  .btn:active{
    background-color: transparent;
    color:rgb(74, 55, 222); ;
  }
  .wrapper .register {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0px 15px;
  }
  .register p a {
    text-decoration: none;
    color: #fff;
  }
  .register p a:hover {
    text-decoration: underline;
  }
  