*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow:  column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
}
.container{
    display: flex;
    flex-flow: column nowrap;
    width: 360px;
    height: auto;
    padding: 20px;
    border: 1px solid gold;
    border-radius: 10px;
    box-shadow: 0px 0px 10px gray;
    background-color: white;
}
.container>h1{
    color: gold;
}
.container>.input{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.passInput{
    width: 95%;
    height: 30px;
    border: 0;
    outline: 0;
    text-align: center;
}
.inputDiv{
    width: 90%;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
    border: 1px solid gold;
    border-radius: 5px;
    box-shadow: 0px 0px 10px gray;
}
.icon{
    margin-right: 10px;
    padding: 5px;
    cursor: pointer;
}
.copyBtn{
    width: 60px;
    font-weight: bold;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid gold;
    border-radius: 5px;
    box-shadow: 0px 0px 10px gray;
}
.copyBtn:hover{
    background-color: gold;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}
#slider{
    width: 100%;
    accent-color: gold;
    margin: 20px 0px;
}
/* .include{
    display: flex;
    flex-direction: column;
} */
.generateBtn{
    font-weight: bold;
    padding: 8px 12px;
    margin-top: 20px;
    background-color: white;
    border: 1px solid gold;
    border-radius: 5px;
    box-shadow: 0px 0px 10px gray;
}
.generateBtn:hover{
    background-color: gold;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}
