body.password__generator {
    min-height: 100vh;
    /* background: #cfcfcf;
    background: linear-gradient(0deg, rgba(207, 207, 207, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}

body.password__generator main .hero .container {
    max-width: 940px;

}

h1 {
    font-size: 36px;
    text-align: center;
}

.password__generator_cont .container {
    width: 100%;
    max-width: 940px;
    padding: 20px;
    background: #FFF;
    box-shadow: 0 10px 18px -6px rgba(0, 0, 0, .2);
}

.password__generator_cont .container .password__cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.generated__password {
    flex: 1;
    padding: 10px 0;
    border-bottom: 2px solid #8a8a8a;
    overflow-wrap: anywhere;
}

.copy__password,
.regenerate__password {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 2px solid #CE2029;
    background-color: #CE2029;
    color: #FFF;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .4);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.copy__password:hover {
    box-shadow: 0 2px 18px -6px rgba(0, 0, 0, .4);
}

.password__conditions {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    gap: 10px 0;
}

.password__conditions span { font-size: 18px; }

.password__conditions span:first-child { width: 150px; }

.password__conditions span:nth-child(2) { font-weight: 500; }

.password__length {
    flex: 1;
    margin-left: 10px;
}

.length__slider { width: 100%; }

.length__slider {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 16px;
}

.length__slider::-webkit-slider-runnable-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
}

.length__slider::-moz-range-track {
    height: 15px;
    background: #c1c1c1;
    border-radius: 16px;
}

.length__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #CE2029;
    box-shadow: -407px 0 0 400px #CE2029;
}

.length__slider::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #CE2029;
    box-shadow: -407px 0 0 400px #CE2029;
}

.letter__combinations { display: none; }

.password__combinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.letter__combinations {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.genpass__btn_cont {
    width: 100%;
    text-align: center;
}

.content .container {
    width: 100%;
    max-width: 940px;
}

.content .container h2 {
    text-align: center;
}

.content .container ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.content .container ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 280px;
    text-align: center;
}

.content .container ul li img { max-width: 110px; }

@media (max-width: 576px) {
    .password__conditions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .password__length {
        flex: unset;
        width: 100%;
        margin: 0;
    }

    .password__combinations { gap: 20px }

    .regenerate__password { width: 100%; }

    .content .container ul li img { max-width: 90px; }
}