#body-left li {
    list-style-type: circle;
}

.errorlist {
    color: #c62828;
}

.errors {
    color: #c62828;
}

.helptext {
    bottom: 5rem;
    background: #bbdefb;
    border-radius: .5rem;
    box-shadow: 0 0 .3rem black;
    display: none;
    margin: .4rem .8rem;
    padding: 1rem;
    position: absolute;
}

input[type=checkbox] {
    display: none;
}

input[type=text], input[type=password], input[type=email] {
    background: white;
    border: none;
    box-sizing: border-box;
    display: block;
    margin-bottom: .6rem;
    padding: 1rem;
    width: 100%;
}

input[type=submit], .registration-toggle {
    border: none;
    border-radius: .4rem;
    box-shadow: 0 0 3px black;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1.3rem;
    margin: 2rem 1rem 0 0;
    padding: 1rem 4rem;
    transition: .2s;
}

input[type=submit] {
    background: #0069c0;
}

input[type=submit]:hover {
    background: #0d47a1;
}

label {
    font-size: 1rem;
}

li {
    list-style-position: inside;
}

p:hover .helptext {
    display: inline-block;
    z-index: 999;
}

p .helptext:hover {
    display: none;
}

#registration-toggle:checked ~ #register {
    display: block;
}

#registration-toggle:checked ~ #login {
    display: none;
}

.registration-toggle {
    background: #bbdefb;
    color: black;
}

.registration-toggle:hover {
    background: #abceeb;
}

#register {
    display: none;
}

#register p {
    position: relative;
}

.required label:after {
    content: ' *';
}