*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            display: flex;
            align-items: center;
            background-image: url("https://picsum.photos/1024/1024");
           background-size: cover;
           background-position: center;
            justify-content: center;
            height: 100vh;
            font-family: sans-serif;
        }
        .wrapper{
            width: 350px;
            height: auto;
           background: transparent;
            padding: 10px 15px;
            margin: 10px 0;
            position: relative;
            border: 1px solid rgba(255, 255, 255, .2);
            backdrop-filter: blur(12px);
            border-radius: 20px;
        }
        .wrapper h1{
            font-size: 25px;
            color: #FFF;
            text-align: center;
        }
        .wrapper .input-box{
            display: flex;
            width: 100%;
            padding: 10px 12px;
            position: relative;
        }
        .wrapper .input-box input{
            width: 100%;
            padding: 10px 12px;
            border-radius: 20px;
            border: none;
            outline: none;
           background: transparent;
            border-bottom: 1px solid #fff;
        }

        input::placeholder{
            color: #FFF;
        }
        .wrapper .input-box .bx{
            position: absolute;
            right: 20px;
            top: 20px;
            
            
        }
        .wrapper .remeber{
            display: flex;
            justify-content: space-between;
            margin:20px 0;
        }
        .wrapper .remeber a{
            text-decoration:none;
        }
        .wrapper .remeber:hover a{
            text-decoration: underline;
        }
        .btn{
            width: 100%;
            height: 40px;
            border-radius: 20px;
            outline: none;
            border: none;
            outline: none;
            font-weight: 500;
            box-shadow: 0px 0px 5px black;
            margin-bottom: 10px;
            
        }
        input[value="Login"]{
            font-weight: 500;
        }
        .wrapper .register{
            display: inline-flex;
            justify-content:space-around;
            margin-left: 45px;
        }
        .register p,a{
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            word-spacing: 1px;
           
        }
        .register:hover a{
            text-decoration: underline;
        }