@import url('https://fonts.googleapis.com/css2?family=Passero+One&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Passero One", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

input:focus-visible {
    outline: 0;
}

body {
    background-color: aquamarine;
}

.main {
    background-color: #3498db;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.box {
    min-width: 400px;
    padding: 10px;
    box-shadow: 0 10px 10px rgb(0 0 0 /50%);
    background: wheat;
    border-radius: 2px;
    margin-top: 10px;
}

#pass-box {
    width: 100%;
    display: block;
    background-color: rgb(81, 252, 158);
    font-size: 30px;
    padding: 10px;
    border-radius: 5px;
}

.row {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    font-size: 20px;
}

#total-char {
    color: blue;
}

label {
    user-select: none;
}

#btn {
    width: 100%;
    font-size: 20px;
    outline: 0;
    border: 0;
    padding: 10px;
    background-color: #34495e;
    color: greenyellow;
    margin-top: 10px;
    border-radius: 5px;
}












