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

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(#D8B5FF, #1EAE98);
    background-repeat: no-repeat;
    font-family: sans-serif;
    color: white;
    font-size: 20px;
}

.checklist {
    padding-top: 30px;
}

.characters {
    padding: 8px;
}

.submit {
    margin-top: 40px;
    color: white;
    width: 50%;
    height: 5%;
    background: none;
    border: 3px solid white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 30px;
    box-sizing : content-box;
}

.password {
    cursor: pointer;
}

.password:active {
    color: black;
}

.message {
    margin-top: 40px;
    padding-bottom: 0;
}

input[type=checkbox] {
    transform: scale(1.5);
}

label {
    font-size: 25px;
}

label[type=characters]{
    padding-left: 0;
}