*{
    margin:0;
    padding: 0;
}

body{
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
}

.main{
 background: #7e49ac;
 margin:40px auto;
 width:450px;
 height: 400px;
 padding:35px 45px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 border: 9px solid #e760bf;
 border-radius: 15px;
 -webkit-border-radius: 15px;
 -moz-border-radius: 15px;
 -ms-border-radius: 15px;
 -o-border-radius: 15px;
}

.random-generator-container{
    margin:0;
    
    /* padding: 3px; */
    font-size: 30px;
    line-height:30px;
    letter-spacing: -0.025em;
}
.random-generator-container>.heading{
    display: flex;
    flex-direction: column;
    margin:0 !important;
    padding: 0 !important;
}

#heading-part-one{
    color:#fff;
}
#heading-part-two{
    color: #ff94c7; 
}
#paragraph-text{
    color:rgb(226, 235, 235);
    margin-top:3px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: normal;
    padding-left: 4px;
}

.password-length-container{
    /* margin-left:60px; */
    display: flex;
    align-items: center;
    flex-direction: column;
    padding:10px 13px;
}
.length-label{
    /* margin-left: 60px; */
    font-size:10px;
    color:#e2ebeb;
}
#password-length{
    text-align: center;
    width: 35px;
    height: 27px;
    border-radius: 5px;
    border: 1px solid gray;
    background:#ff94c7 ;
    /*border: 1px solid #ff94c7;
    */
    font-weight: 600;
    color:#7e49ac;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

input[type=number]:focus {
    border: 1.4px solid #ff94c7;
    outline: none;
  }
  .generate-reset{
    display: flex;
    justify-content: space-between;
    width: 100%;
 }
#generate-password, #reset>button{

    /* width: 50%; */
    margin-top: 20px;
    font-family: inherit;
    color:#7e49ac;
    font-weight: 900;
    font-size: 20px;
    border:2px solid #ff94c7;
    padding:  9px 15px 9px 15px;
    /* margin-top: 40px; */
    margin-bottom: 35px;
    background: #ff94c7;
    cursor: pointer;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

#generate-password:hover, #reset>button:hover{
    background-color: #7e49ac;
    color:#ff94c7;
}
#reset{
    color: #e760bf;
    font-size: 20px;
    display: block;
    /* margin-left: 25px; */
  
 }

 #reset>button{
    width:210px;
 }



#horizontal-line{
    border-bottom: 1px solid #ff94c7;
    width: 100%;
}

#password-select-one, #password-select-two{
    background-color: #ff94c7;
    height:20px;
    /*margin-bottom:5px;
    */margin-top:30px;
    padding:10px 20px;
    width:38%;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    cursor: pointer;
    text-align: center;
    color:#7e49ac;
    font-weight: 900;
}
#password-select-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

input::-webkit-outer-spin-button,
      input::-webkit-inner-spin-button {
        display: none;
      }

      .numbers-symbols {
        display: flex;
        justify-content: space-between;
        /* margin-left: 7px; */
      }
      
      /* .symbols{
        margin-left:10px;
      } */
      .numbers, .symbols {
        flex: 1;
        text-align: center;
        /* margin-left: 10px; */
        padding:10px 13px;
      }
      
      .length-label {
        font-size: 10px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 35px;
        height: 27px;
        border-radius: 5px;
        border: 1px solid gray;
        /* margin-bottom: 10px; */
      }

      
      
      input[type="checkbox"]:checked {
        display: inline-block;
        background-color: #e760bf;
      }
 