*{
    margin: 0;
    padding: 0;
    font-family: cursive;
}
body{
    background-color: lightblue;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box{
    width: fit-content;
    height: fit-content;
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 2px #fff;
    padding: 20px;
    text-align: center;
}
h1{
    font-size: 27px;
    text-align: center;
}
#pass-gen{
    width: 100%;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 10px;
    outline: none;
    margin: 15px 0px;
}
.len{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
}
#pass-length{
    width: 13%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    border: 2px solid black;
    border-radius: 5px;
}
.checksec div{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
button{
    background-color: aquamarine;
    padding: 10px;
    font-size: 20px;
    width: 100%;
    border-radius: 10px;
    border: none;
}
#alertmsg{
    font-size: 18px;
    margin: 0px 0px 22px 0px;
    font-family: sans-serif;
    color: red;
    display: none;
}