* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #90ee90;
}

.main {
    background-color: #cdeaca;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 400px;
}

h1 {
    font-size: 3rem;
    text-align: center;
    user-select: none;
}

.wrapper {
    width: 100%;
}

.wrapper-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid gray;
}

h1, p, button {
    font-family: "Bitcount Grid Single", system-ui;
}

p {
    text-align: center;
    margin-bottom: .5rem;
}

input {
    font-family: "Lato", sans-serif;
    background-color: transparent;
    display: block;
}

.show-pass {
    font-size: 1.2rem;
    width: 100%;
    padding: .5rem;
    outline: none;
    border: none;
}

.copy {
    padding: .5rem;
    cursor: pointer;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
}

.copy.active {
    color: #159c15;
}

.pass-lenght {
    margin: 0 auto;
    border: 2px solid gray;
    padding: .5rem;
    outline: none;
    text-align: center;
}

.generate-pass {
    padding: .5rem;
    background-color: #11a211;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    letter-spacing: .1rem;
    transition: all ease .3;
}

.generate-pass:hover {
    background-color: #0f7c0f;
}


