* {
    margin: 0;
    padding: 0;
    font-size: 18px;
    box-sizing: border-box;
    user-select: none;
    /* border: 0px; */
}

body {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}


#hora,
#data {
    padding: 0 10px;
    font-size: 25px !important;
}

#gerador_de_senha>p {
    display: flex;
    font-weight: bold;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    font-size: 25px !important;


}

#data_hora {

    font-size: 30px;
    font-weight: bold;
    /* background-color: rgb(80, 83, 254); */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#box {
    margin: auto;
    width: 600px;
    height: 690px;
    background-color: rgb(59, 150, 183);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#formRange {
    width: 550px;
    height: 640px;
    background-color: rgb(109, 169, 181);
    box-shadow: 0 0 20px black;

}


.div_tam_qua {
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;

}

.l_div {

    width: 140px;
    margin: 0 20px;
    font-weight: bold;
}

.div_tam,
.div_qua {
    width: 250px;
    height: 30px;

}

.p_div {
    margin: 0 30px;
    font-size: 20px;
    font-weight: bold;
}

input[type="range"] {
    -webkit-appearance: none; /* Remove estilos padrão no Chrome/Safari */
    -moz-appearance: none;    /* Remove estilos padrão no Firefox */
    -ms-appearance: none; 
    appearance: none;         /* Remove estilos padrão no Edge */
    margin: 0;                /* Remove margens adicionais */
  }

input[type="range"] {
    -webkit-appearance: none;
    /* Remove estilo padrão */
    appearance: none;
    width: 250px;
    height: 30px;
    background: transparent;
}

/* Estilo da trilha */
input[type="range"]::-webkit-slider-runnable-track {
    background: #ddd;
    height: 5px;
    border-radius: 10px;
}

input[type="range"]::-moz-range-track {
    background: #ddd;
    height: 5px;
    border-radius: 10px;
}

/* Estilo do thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: rgb(109, 169, 181);
    border-radius: 50%;
    border: 2px solid #333;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: rgb(109, 169, 181);
    border-radius: 50%;
    border: 2px solid #333;
    cursor: pointer;
}

#div_checkbox {
    height: 150px;
    margin: 0 20px 20px 20px;

}

#binario,
#numeros,
#minusculo,
#maiusculo,
#especiais {
    display: flexbox;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;

}

#l_selec_op {
    /* margin-top: 20px; */
    margin: 20px 0 10px 0;
    font-weight: bold;

}


#descr_text {

    font-size: 25px;
    font-weight: bold;

}

.descr_text {
    font-size: 20px;
    font-weight: bold;
}




#div_textarea {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#l_textarea {
    font-size: 25px !important;
    margin: 20px;
    font-weight: bold;

}

/* 
#senha_gerada {
    width: 550px;
    height: 150px;
    padding: 10px;
    resize: none;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    border: none;
    background-color: rgb(0, 0, 0);
    color: rgb(202, 202, 202);

    cursor: none; 
} */


#senha_gerada {
    width: 530px;
    height: 150px;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: 'Consolas';
    color: #00ff00;
    background-color: #000000;
    padding: 10px;
    border-radius: 5px;
    border-radius: 5px;
    font-size: 20px;
    resize: none;
    /* white-space: pre; */
    font-weight: bold;
    pointer-events: none;
    border: none;
    box-shadow: 0 0 20px rgb(255, 255, 255);
 
}

#botoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.reset_submit_copy {
    width: 100px;
    height: 30px;
    margin: 0 20px;
}

#reset,
#submit,
#copiar {
    width: 100px;
    height: 30px;
    background-color: rgb(109, 169, 181);
    font-weight: bold;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px black;

}

#reset:hover,
#submit:hover,
#copiar:hover {
    background-color: rgb(59, 150, 183);
    /* Cor ao passar o mouse */
    border-radius: 15px;
    color: rgb(225, 225, 225);
    /* Aumenta o arredondamento */
}











/* 
textarea[readonly]::selection {
    background: blue;
    color: white;
    user-select: none;
    pointer-events: none;
    border: 2px solid blue;
}

textarea[readonly] {
    border: 2px solid blue;
}

textarea::selection {
    user-select: none;
    pointer-events: none;
} 
    */