* {
    padding: 0;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;

  }

  body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(255, 255, 255);
  }


  .wrapper{
    min-width: 420px;
    background: white;
    color: black;
    border-radius: 10px;
    
  }


  .wrapper img{
    height: 50px;
    width: 50px;
    margin-left: 43%;
    margin-bottom: 30px;
    
  }


  .wrapper h1{
    font-size: 36px;
    text-align: center;

  }

  .wrapper .input-box{
    width: 100%;
    position: relative;
    height: 50px;
    margin: 30px 0;

  }

  .input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid black;
    border-radius: 40px;
    font-size: 18px;
    padding: 20px 45px 20px 20px;
  }


  .input-box input::placeholder{
    color: black;

  }

  .input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

  }

.input-box .fa-eye,
.input-box .fa-eye-slash {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
}

  .wrapper .remember-forgot{
    display: flex;
    justify-content: center;
    font-size: 14.5px;
    margin: -15px 0 15px;


  }

  .remember-forgot label input{
    margin-right: 3px;


  }

  .remember-forgot a{
    font-size: 16px;
    color: rgb(115, 0, 192);
    text-decoration: none;


  }

  .wrapper .btn{
    width: 100%;
    height: 45px;
    background: #6a0dad;
    border: none;
    outline: none;
    border-radius: 45px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
  }

  .btn:hover {
    background: #5a0ca8;
    cursor: pointer;
}

  .wrapper .register-link{
    
    margin-top: 20px;
    text-align: center;
    font-size: 16px;


  }

  .register-link p a{
    
    text-decoration: none;
    color: rgb(115, 0, 192);


  }


  



 