body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1C1C1C;
}

.container {
    width: 550px;
    min-height: 500px;
    padding-bottom: 20px;
    border-radius: 10px;
    margin: 50px auto;
    background-color: #ECFDF5;
}

.content {
    position: relative;
    width: 450px;
    margin: 0 auto;
    top: 40px;
}

#options {
    margin: 25px auto;
    line-height: 30px;
}

h1 {
    color: #273549;
    font-weight: 800;
    font-family: 'Karla', sans-serif;
    margin: 0px 0px 10px 0px;
}

.green {
    color: #10B981;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #6B7280;
    margin: 0px 0px 15px 0px;
}

button {
    position: relative;
    background-color: #10B981;
    color: #FFF;
    border-radius: 6px;
    padding: 10px 20px;
    border: none;
    margin: 25px 0px 0px 0px;   
}
button:active {
    top: 1px;
}

hr {
    border: solid 1px #D5D4D8;
    margin: 35px auto;
}

.pwcontainer {
    display: flex;
    justify-content: space-between;
    min-height: 40px;
    margin-bottom: 45px;
}

.pw {
    width: 190px;
    min-height: 25px;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 6px;
    background-color: #273549;
    text-align: center;
    color: #5DEF92;
    word-wrap: break-word;
}

#capitals, #digits, #symbols {
    display: flex;
    justify-content: space-between;
}

.examples {
    color: #6B7280;
    font-size: 12px;
}

#output {
    display: inline;
}



.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    font-size: 12px;
    width: 100px;
    padding: 0px 10px;
    background-color: #273549b3;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 93%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #273549b3 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


input[type=range] {
    height: 13px;
    -webkit-appearance: none;
    appearance: none;
    margin: 0px 20px;
    width: 300px;
    background-color: transparent;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: #273549;
    border-radius: 5px;
}
input[type=range]::-webkit-slider-thumb {
    border: 1px solid #6B7280;
    height: 20px;
    width: 20px;
    border-radius: 15px;
    background: #10B981;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #273549;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: #273549;
    border-radius: 5px;
    border: 0px solid #10B981;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 3px #273549;
    border: 1px solid #273549;
    height: 10px;
    width: 10px;
    border-radius: 15px;
    background: #10B981;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #273549;
    border: 0px solid #10B981;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #273549;
    border: 0px solid #10B981;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    border: 1px solid #6B7280;
    height: 15px;
    width: 15px;
    border-radius: 15px;
    background: #10B981;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #273549;
}
input[type=range]:focus::-ms-fill-upper {
    background: #273549;
}

.flipswitch {
    position: relative;
    width: 40px;
    top:5px;
    margin-right: 30px;
}
.flipswitch input[type=checkbox] {
    display: none;
}
.flipswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #6B7280;
    border-radius: 50px;
}
.flipswitch-inner {
    width: 200%;
    margin-left: -100%;
    transition: margin 0.2s ease-in 0s;
}
.flipswitch-inner:before, .flipswitch-inner:after {
    float: left;
    width: 50%;
    height: 20px;
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
.flipswitch-inner:before {
    content: "";
    padding-left: 6px;
    background-color: #10B981;
    color: #FFFFFF;
}
.flipswitch-inner:after {
    content: "";
    padding-right: 6px;
    background-color: #273549;
    color: #273549;
    text-align: right;
}
.flipswitch-switch {
    width: 25px;
    height: 25px;
    margin: -2.1px;
    background: #FFFFFF;
    border: 1px solid #6B7280;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 17px;
    transition: all 0.2s ease-in 0s;
}
.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
    margin-left: 0;
}
.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
    right: 0;
}