body {
    background: url("../images/background.avif") no-repeat #141b2d center top;
}

.wrapper {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

#header {
    color: white;
}

#password {
    font-size: 20px;
    font-family: monospace;
    font-weight: bold;
    padding: 0;
}

.card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 5px;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
    color: hsl(206, 17%, 28%);
    font-size: 18px;
    max-width: 800px;
    padding: 30px 40px;
    margin: 0 auto 1rem;
}

.card-header::after {
    content: " ";
    display: block;
    width: 100%;
    background: #e7e9eb;
    height: 2px;
}

.card-body {
    min-height: 100px;
}

.card-footer {
    text-align: center;
}

.card-footer::before {
    content: " ";
    display: block;
    width: 100%;
    background: #e7e9eb;
    height: 2px;
}

.card-footer::after {
    content: " ";
    display: block;
    clear: both;
}

.float-right {
    float: right;
}

#length {
    width: 70px;
}

#meter {
    height: 6px;
    background-color: #eee;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 10px 0 0 0;
    padding: 0;
}

#meter .password-strength-meter-score {
    height: inherit;
    width: 0%;
    transition: .3s ease-in-out;
    background: #ff7700;
}

#meter .password-strength-meter-score.psms-25 {
    width: 25%;
    background: #ff3b00
}

#meter .password-strength-meter-score.psms-50 {
    width: 50%;
    background: #ffd400
}

#meter .password-strength-meter-score.psms-75 {
    width: 75%;
    background: #aeff00
}

#meter .password-strength-meter-score.psms-100 {
    width: 100%;
    background: #148f56
}

.action-buttons {
    text-align: right;
    padding: 0;
}
