*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana,Tahoma, sans-serif;
}

body{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background:linear-gradient(to top,#FDFCFB,#E2D1C3);
    background-repeat: no-repeat;
}
.container{
    width: 90%;
    max-width: 450px;
    position: absolute;
    margin-top: 25%;
    /* box-shadow: 0 0 10px rgb(94, 78, 78); */
    
}
h2{
    color: rgb(233, 148, 37);
    opacity: 0.75;
    letter-spacing: 2px;
    line-height:1.2 ;
    text-align: center;
}
.writingSpace{
    width: 400px;
    position: relative;
    background-color:rgb(237, 204, 155);
    border-radius: 1rem;
    border-bottom: 0.35rem solid rgb(225, 170, 144);
    margin: 1rem 0;
    padding-top: 0.35rem;
   
}

.display{
    width: 100%;
    background-color: transparent;
    padding: 1.15rem 1rem;
    color: rgb(219, 174, 106);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 30px;
    letter-spacing: 1px;
    padding-right: 3.25rem;
    border:none;
    /* transform:translateY(-50%) ; */
}
.display::placeholder{
    position: absolute;
    top: 50%;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #c29f82;
    opacity: 0.65;
    transform:translateY(-50%) ;
}
.writingSpace button{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform:translateY(-50%) ;
}
.generator{
    width: 100%;
    background-color: rgb(237, 204, 155);
    border-radius: 1rem;
    padding: 2rem;
    border-bottom: 0.35rem solid rgb(225, 170, 144);

}
.pswdlength{
   display: flex; 
   justify-content: space-between;
   align-items: center;
}
.pswdlength p:nth-child(1){
    color: black;
    font-weight: 500;
    font-size: 1.5rem;
}
.pswdlength p:nth-child(2){
    color:black;

}
.strength{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:1.75rem 0 2rem 0 ;
}
.strength p{
    color: black;
    font-weight: 600;
    font-size: 1.25rem;
}
#circle{
    width: 1.5rem;
    height:1.5rem;
    /* border: 0.5px solid black ; */
    border-radius: 50%;
    box-shadow: 0 0 10px black;
    /* filter: blur(3px); */
    
}
.generateBtn{
    cursor: pointer;
    width: 100%;
    padding: 1rem 0;
    background-color: rgb(225, 170, 144);
    text-align: center;
    border-radius: 0.75rem;
    border-bottom: 0.35rem solid ;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.25rem;
}
.checkBox{
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 10;
}
.checkBox input{
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgb(253, 249, 241);
    cursor: pointer;
    position: relative;
    border-radius: 0.35rem;
}
.checkBox input:checked{
    background-color: rgb(225, 170, 144);
}
.checkBox input:checked:before{
    content: '✓';
    position: absolute;
    color: black;
    font-size: 1.05rem;
    font-weight: 600;
    left: 50%;
    top: -3.5px;
    transform: translateX(-50%);
}
.checkBox label{
    /* color: white; */
    font-size: 1.25rem;
    letter-spacing: 1px;

}
.slider{
    appearance: none;
    width: 100%;
    height: 0.75rem;
    cursor: pointer;
    background-color: rgb(241, 230, 211);
    border-radius: 1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(rgb(225,170,144),black);
     background-repeat: no-repeat;
     border: none;
     outline: none;
}
.slider::-webkit-slider-thumb{
    position: relative;
    /* z-index: -1; */
    appearance: none;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color:black ;
    cursor: pointer;
    margin-top: -3px;
    box-shadow: 0px 0px 20px 0px ;
    transition: all 100ms ease-in;
}
.slider:focus{
    outline: 3px solid rgb(237, 204, 155);
    /* z-index: 0.5; */
}
.slider::-webkit-slider-thumb{
    outline: 2px solid black;
    background-color: rgb(237, 204, 155);
}

.copyTextBtn{
    background-color: transparent;
    border: none;
    outline: none;
}
.tooltip{
    background-color: navy;
    border-radius: 1rem;
    color: white;
    padding: 0.2rem 0.5rem;
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    top: -35px;
    left: -25px;
    padding: 5px 10px;
    transform: scale(0);
    transform-origin: bottom;
    transition: all 250ms ease-in-out;
}
.tooltip.active{
    opacity: 1;
    transform: scale(1);
}
/* .copyright{
    display: flex;
    width: 400px;
    /* justify-content: space-between; *
    gap: 10px;
    align-items: center;
    bottom: 0;
    margin-top: 15px;

} */
/* footer {
    position: relative;
    height: 300px;
    width: 100%;
    background-color:transparent;
} */
.footer{
    width: 300px;
    
}
p.copyright {
    
    width: 100%;
    color: black;
    line-height: 40px;
    font-size: 0.7em;
    text-align: center;
    bottom:0;
    
}
