body{
    background-color : #333;
    color : white;
    display : flex;
    min-height : 100vh;
    justify-content : center;
    align-items : center;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}
.container{
    background-color : #006699;
    padding: 3rem;
    border-radius : 1rem;
    border : 2px black solid;
    display : flex;
    justify-content : center;
    align-items : center;
    flex-direction: column;
}

.form{
    display : grid;
    grid-template-columns : auto auto;
    row-gap: 1rem;
    column-gap: 3rem;
    justify-content: center;
    align-items : center;
}
.title{
    margin : 0;
    text-align : center;
}
label{
    font-weight : bold;
}
.character-amount-container{
    display : flex;
    align-items : center;
}
 .number-input{
     width : 2rem;
 }
.password-display{
    background-color: aliceblue;
    color : black;
    padding: 1rem;
    border : 1px solid #333;
    height : 3rem;
    width : 350px;
    display : flex;
    align-items : center;
    justify-content: center;
    word-break: break-all;
    border-radius: 0.5rem;
}
.btn{
    grid-column: span 2;
    background-color: transparent;
    border : 2px solid white;
    color : white;
    font-weight : bold;
    border-radius: 1rem;
    cursor: pointer;
    padding: .5rem 1rem;
}

.btn:hover{
    background-color : #FFFFFF33;
}

