@import url('https://fonts.googleapis.com/css2?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&display=swap');

*{
    padding: 0;
    margin: 0;
}

body{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

body img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.container{
    height: max-content;
    width: max-content;
    background: transparent;
    backdrop-filter: blur(7px);
    border: 1px solid #ffffff69;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    
}

.container h1{
    color: rgb(122, 150, 211);
    font-family: "poppins";
    font-size: 30px;
    text-transform: capitalize;
}

.container #second{
    color: rgb(77, 177, 77);
    text-decoration: underline;
    
}

.container .input-copy{
    width: 300px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px ;
    border-radius: 10px;
}

.container .input-copy img{
    height: 30px;
    width: 20px;
    position: relative;
    cursor: pointer;
}

.container .input{
    background-color: white;
    border: none;
    outline: none;
    border-radius: 7px;
    width: 90%;
    font-family: "poppins";
    color: rgb(122, 150, 211);
}

.container button{
    font-family: "poppins";
    padding: 15px 25px;
    color: white;
    background-color: rgb(77, 177, 77);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}

.range{
    width: 330px;
}

.password-length{
    color: white;
    font-family: "poppins";
    display: flex;
    width: 330px;
    justify-content: space-between;
    align-items: center;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 330px;
    color: white;
    font-family: "poppins";
    margin: 5px 0px;
}

