*{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(121, 123, 139);
}
.box{
    border: 1px solid blue;
    text-align: center;
    width: 25em;
    height: 25em;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.box h2{
   width: 100%;
   background: blue;
   height: 2.2em;
   line-height: 2.2em;
   margin-bottom: .5em;
   font: bold;
}
.viewer{
   width: 96%;
   display: flex;
   align-items: center;
}
.alert{
    border: 6px solid rgb(152, 253, 0);
    border-radius: 8px;
}

#password{
    height: 3.57rem;
    width: 20rem;
    padding-left: 6px;
    font-size: 26px;
    outline: none;
    border: 2px solid blue;
    color: blue;
    border-radius: 8px 0   0  8px;
   background: rgb(219, 238, 245);
}
.copy{
    height: 3.8rem;
    padding-top: 0.1em;
    border: 1px solid blue;
    border-left: none;
    width: 20%;
    font-size: 20px;
    font-weight: bold;
    color: whitesmoke;
    background-color: blue;
    border-radius: 0 8px 8px 0;
}
.copy:hover{
    background: rgb(0, 102, 255);
}

.generate{
    color: whitesmoke;
    background: blue;
    font-size: 2em;
    padding: 0.1em 2em;
    cursor: pointer;
    margin-bottom: 1em;
    border-radius: 10px;
    margin-top: .5em;
}
.generate:hover{
    background: rgb(0, 102, 255);
}


.settings{
  width: 100%;
  padding: 1em;
  margin-top: .5em;
  box-sizing: border-box;
  border-top: 1px solid blue;
  border-bottom: 1px solid blue;
}

.lineInput{
   display: flex;
   color: blue;
   font-size: 1.6em;
   gap: .3em;
   text-transform: capitalize;
}

.qtdChar{
    display: flex;
    color: blue;
    align-items: center;
    font-size: 1.5em;
    gap: .3em;
}