html {
    background-color: rgb(8, 12, 20);
    font-family: 'Oxanium', sans-serif;
}

body {
    margin: 25px auto;
    width: 400px;
    background-color: #172033;
    border: 1px solid #6B7280;
    border-radius: 8px;
    box-shadow: 0 0 25px #1F2937;
    color: #FFFFFF;
}

#container {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header {
    width: 80%;
    margin-bottom: 25px;
}

#input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#password-title {
    margin: 0 0 -10px 0;
}

#password-title-2 {
    margin: 0;
    color: #4ADF86;
}

#password-subtitle {
    margin: -2px 0 40px 0;
    font-weight: 200;
    font-size: medium;
}

#button-wrapper {
    width: fit-content;
    height: fit-content;
    background-color: white;
    padding: 1px;
    border-radius: 5px;
    box-shadow: 0 0 3px white;
}

#generate-password-btn {
    background-color: #3fc273;
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    color:#FFFFFF;
    transition: .5s ease-in-out;
}

#generate-password-btn:hover { 
    background-color: #05965a;
    box-shadow: 0 0 4px black;
    transition: .17s ease-in-out;
}

#password-display-el {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 2px solid #232c3a;
}

.password-display-value-style {
    background-color: #1e2b3d;
    width: 47.5%;
    text-align: center;
    padding: 8px 0 5px 0;
    border-radius: 4px;
    color: #4ADF86;
    font-size: 75%;
    transition: .17s ease-in-out;
}

.password-display-value-style:hover {
    background-color: #253347;
    box-shadow: 0 0 5px white;
    transition: .17s ease-in-out;
}

/* SLIDER */
#controls-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;

}

#slider-text {
    margin: 0;
    font-size: small;
    padding: 2px 0 0 8px;
}


.slider {
    -webkit-appearance: none;
    width: 150px;
    height: 15px;
    background: #d3d3d3;
    outline: none;
    border-radius: 8px;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    overflow: hidden;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 15px;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
  }
  /* SLIDER END */

  /* CHECKBOXES */
  #checkbox-container {
    font-size: small;
  }

  input[type='checkbox'] {
    accent-color: #04AA6D;
}
  /* CHECKBOXES END */