* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main{
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 5%;
    padding: 1rem;
    width: 25rem;
    margin: 2rem;
}

.passinput{
    font-size: 2rem;
    margin: 1rem;
}

.character-settings, .extra-settings{
    display: grid;
    grid-template-columns: 20rem 20px;
    gap: 1rem;
    align-items: center;
    margin: 1rem;
}

input[type="checkbox"]{
    width: 20px;
    height: 20px;
}

input[type="number"]{
    width: 60px;
    height: 40px;
    text-align: center;
    margin: 1rem 0;
    border: 1px solid black;
    outline: none;

    &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    }
}

.increase, .decrease{
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid black;
}

.increase{
    margin-right: -5px;
    border-radius: 10% 0 0 10%;
}

.decrease{
    margin-left: -5px;
    border-radius: 0 10% 10% 0;
}