body {
    margin: 80px 50px;
    background-color: #1F2937;
    font-family: Karla;
    max-width: 500px;
    max-height: 800px;
}

h1 {
    color: #F0F9FF;
    margin-bottom: 10px;
    font-weight: 800;
}

p {
    color: #D5D4D8;
    margin-top: 5px;
    font-family: Inter;
}

#header-highlight {
    color: #38BDF8;
}

#pwOptions-div {
    border: #7DD3FC solid 1px;
    border-radius: 5px;
    padding: 5px 10px;
    color: #D5D4D8;
    display: flex;
    flex-direction: column;
}

.pwOption {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
}

#length-select {
    background-color:#273549;
    border-radius: 5px;
    color: #D5D4D8;
    margin-left: 10px;
    border: #D5D4D8 solid 1px;
}

#specialchar-checkbox {
    margin-left: 5px;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    border: #D5D4D8 solid 2px;
    }
    
#specialchar-checkbox:not(:checked) {
    background-color: #0EA5E9;
    accent-color: #D5D4D8;
}

#generate-btn {
    font-family: Inter;
    color: white;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #0EA5E9;
    border-radius: 5px;
    padding: 10px 15px;
    border: 0px;
    font-size: 14px;
}

hr {
    border-color: #273549;
    box-shadow:  0px 4px 4px #111827 ;
}


/* still not wide enough for all 25-char long passwords! */
#pw1-div, #pw2-div {
    width: 230px;
    height: 30px;
    background-color: #273549;
    border-radius: 5px;
    color: #7DD3FC;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#output-div {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

#copyPw1-btn, #copyPw2-btn {
    margin: 10px 10px;
    width: 40px;
    height: 40px;
    padding: 3px;
    background-color: #495969;
    border-radius: 4px;
    box-shadow: 1px 1px 2px #222222;
    font-size: 20px;
}

#copy-message {
    font-size: 10px;
    color: lightgreen;
}

.pwcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}