body {
    background-color: #F0F2F5;
}

h1 {
    font-family: sans-serif;
    color: green;
    text-align: center;
    font-weight: 800;
}

.container {
    align-items: center;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#password {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: large;
    font-weight: bold;
    background-color: white;
    width: 60%;
    height: 19vh;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

#password>p {
    margin-left: 20px;
}

.bottom {
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: black;
}

#icons {
    width: 100px;
    display: flex;
    justify-content: space-around;
}

#icons>i {
    cursor: pointer;
}

.control {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    width: 60%;
    height: 62%;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.control>h2 {
    font-family: sans-serif;
    font-size: 35px;
    font-weight: 400;
    width: 80%;
    margin-left: 10%;
    border-bottom: 1px solid rgb(199, 199, 199);
}

.pass {
    justify-content: center;
    flex-direction: column;
    width: 40%;
    height: 30vh;
    display: flex;
    margin-left: 5%;
}

#box {
    text-align: center;
    align-content: center;
    width: 4vw;
    height: 8vh;
    border: 2px solid gray;
    border-radius: 4px;
}

#input {
    width: 16vw;

}

.length {
    font-family: sans-serif;
    justify-content: space-between;
    display: flex;
    width: 100%;
    height: 50vh;
}

.check {
    align-content: center;
    width: 20%;
}

input[type="range"] {
    accent-color: ForestGreen;
}

input[type="checkbox"] {
    accent-color: ForestGreen;
    cursor: pointer;
}

.check>label {
    cursor: pointer;
    font-size: 20px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    cursor: pointer;
}

.range {
    display: flex;
}

.check>input {
    width: 20px;
    height: 20px;
}

.container #password #random-pass {
    font-family: sans-serif;
    font-size: 20px;
    border: none;
    outline: none;
    width: 80%;
    height: 50px;
}