form {
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 10px;
    max-width: 400px;
    min-width: 200px;
    padding: 10px;
    width: 80%;
}

form h2 {
    margin: 10px;
    text-align: center;
    width: 100%;
}

form select,
form textarea,
form input {
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
}

form select,
form textarea,
form input,
form label {
    box-sizing: border-box;
    width: 100%;
    font-size: 1rem;
}

form input::placeholder {
}

form input[type='submit'] {
    margin: 15px 0;
    width: 80%;
}

form label {
    margin: 15px 0 5px;
}

form label::after {
    content: ':';
}

form label:first-of-type {
    margin-top: 0;
}

form p {
    margin: 0 0 10px 0;
}

label[for='showpwd'] {
    margin: 5px 0;
    width: calc(100% - 30px);
}

.changedBorder {
    border: 3px solid #ffff00;
    box-shadow: grey 0px 0px 5px;
}

.greenBorder {
    border: 3px solid rgb(0, 255, 0);
    box-shadow: rgb(0, 255, 0) 0px 0px 10px;
}

.redBorder {
    border: 3px solid red;
    box-shadow: red 0px 0px 10px;
}

.legende {
    margin: 10px 0;
    text-align: left;
    width: 100%;
}

#pwdWraper {
    position: relative;
    width: 100%;
}

#showpwd {
    display: none;
    position: absolute;
    right: 12.5px;
    top: calc(50% - 12.5px);
}

form .link {
    margin: 5px 0 20px;
}

form #disclaimer {
    display: flex;
}

form #disclaimer label {
    display: inline-block;
}

form #disclaimer label::after {
    content: '';
}

form #akkoord {
    width: 20px;
    height: 20px;
    align-self: center;
    margin-right: 10px;
}
