.section {
    margin: auto;
    display: flex;
    flex-direction: column;
    width: min(90%, 700px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}


#sectionPassword {
    padding-top: var(--space-xs);
 }

#togglePsw {
    padding-bottom: var(--space-xs);
}

#passwordPhrase, #passwordCaracteres {
    margin: auto;
    background: var(--glow-plus);
    width: 90%;
    padding: 5px 10px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    font-size: clamp(0.9rem, 2.5vw, var(--text-xl));
    display: flex;
    align-items: center;
    box-sizing: border-box;
    word-break: break-all;
}

#passwordPhrase {
    height: 5em;
}

#pswCaracteres, #pswPhrase {
    margin-left: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

#copy {
    margin-left: auto;
    cursor: pointer;
    flex-shrink: 0;
}

#caracteresLongueur, #phraseLongueur {
    width: 80%;
    height: 4px;
    background: var(--glow-plus);
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
}

.selection {
    padding: clamp(12px, 4vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    align-self: start;
}


.selectionLigne {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(8px, 3vw, 40px);
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.selectionLigne > *:first-child {
    flex: 0 0 clamp(60px, 15vw, 100px);
}

.selectionLigne > *:nth-child(2) {
    flex: 1 1 150px;
    min-width: 0;
}

.selectionLigne .value {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
}

.selectionChk {
    display: flex;
    flex-direction: column;
    padding-left: clamp(30px, 15vw, 50px);
    padding-top: 20px;    
}

.selectionChk > div {
    display: flex;
}

.selectionChk label {
    width: 150px;
    text-align: left;
    flex-shrink: 0;
    padding-bottom: 10px;
}

input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
}

.fontXL {
    font-size: var(--text-xl);
}

.fontLG {
    font-size: var(--text-lg);
}