@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: rebeccapurple;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    margin: 0;
    min-height: 100vh;
}

.pwd-container {
    background-color: rgb(95, 166, 211);
    display: flex;
    flex-direction: column;
    width: 300px;
}

h3 {
    display: flex;
    justify-content: center;
}

.generatedPwd {
    background-color: rgb(139, 95, 211);
    display: flex;
    font-size: 1rem;
    align-items: center;
    height: 50px;
    position: relative;
    padding: 1rem;
    margin: 1rem;
    border-radius: 8px;
}

.criterias {
    padding: 0 1rem 1rem;
}

.criteria {
    display: flex;
    justify-content: space-between;
}

.validate {
    background-color: rgb(228, 164, 46);
    border: none;
    display: block;
    font-size: 1.5rem;
    padding: 1rem;
    margin: 1rem;
    border-radius: 8px;
}