.registerForm label {
    font-size: 20px;
    font-family: 'Abel', sans-serif;

}

/*noinspection CssUnusedSymbol*/
.helptext {
    display: none;

}

.customLabel {
    font-size: 20px;
    font-family: 'Abel', sans-serif;
}

.registerForm {
    text-align: center;
}

.button {
    background-color: rgb(175, 39, 0); /* Green */
    border: none;
    color: rgb(255, 60, 0);
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.centerAll {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.flash {
    width: 100%;
    text-align: left;
    vertical-align: text-top;
}

.flashContent {
    width: 100%;
    height: 40px;
}

.fullContent {
    width: 500px;
    height: 500px;
    padding: 0;
    margin: 0;
    text-align: center;

}

.iconFree {
    width: 50px;
}

.button1 {
    color: rgb(255, 255, 255);
    border: 2px solid rgb(175, 0, 1);
    width: 90%;
}

.button1:hover {
    background-color: rgb(195, 34, 0);
    color: rgb(0, 0, 0);
}

input[type=text], input[type=password], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: rgb(76, 175, 80);
    color: rgb(255, 255, 255);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: rgb(69, 160, 73);
}

