@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #e3e3e3;
    height: 100vh;
    width: 100vw;

    display: flex;
    justify-content: center;
}

.principal {
    margin-top: 220px;
    height: 245px;
    width: 500px;
    background-color: #fff;
}

.titre {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 1.7rem;
}

.séparation {
    height: 1px;
    background-color: #cacaca;
    border: none;
}

.affichageDuMdp {
    margin-top: 14px;
    margin-left: 14px;
    height: 100px;
    width: 472px;
    border-radius: 0;
    border:solid #cacaca 1px;

    font-size: 4rem;
    font-weight: 400;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
}

.miseEnPlace {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.regenérer {
    margin-top: 20px;
    width: 300px;
    height: 50px;
    background-color: #5372f0;
    border-radius: 3px;
    border: none;
    transition: .3s;
}

.regenérer:hover {
    box-shadow: 3px 3px 4px 0 rgb(126, 126, 126);
    color: rgb(255, 255, 255);
}

.copier {
    margin-top: 20px;
    width: 150px;
    height: 50px;
    background-color: #ffffff00;
    border-radius: 3px;
    border: solid 1Px rgb(197, 197, 197);
    transition: .3s;
}

.copier:hover {
    box-shadow: 3px 3px 8px 0 rgba(126, 126, 126, 0.48);
}