/**
    Code from https://www.geeksforgeeks.org/javascript/create-a-password-strength-checker-using-html-css-and-javascript/
*/
.group {
    width: auto;
    text-align: left;
}

    .group label {
        display: block;
        padding: 10px 0;
        padding-bottom: 5px;
    }

    .group input {
        border: none;
        outline: none;
        padding: 20px;
        width: calc(100% - 80px);
        border-radius: 25px;
        background-color: #eaeff2;
        color: #3ba62f;
        font-size: 20px;
    }

    .group .meterAndDesc {
        display: flex;
    }

    .group .power-desc {
        margin-left: 10px;
    }

    .group .power-container {
        background-color: #2E424D;
        width: 25%;
        height: 15px;
        border-radius: 15px;
    }
        .group .power-container .power-point {
            background-color: #D73F40;
            width: 2%;
            height: 100%;
            border-radius: 15px;
            transition: 0.5s;
        }
