.Inputfield {
    clear: both;
    box-sizing: border-box;
}
.Inputfield:not(.InputfieldSubmit) {
    margin-bottom: 10px;
	background-color: #f5f5f5;
	padding: 15px 20px;
	border-radius: 10px;
}
.InputfieldHeader {
    /* primary label */
    font-weight: bold;
}
.Inputfield input[type="text"],
.Inputfield input[type="email"] {
    width: 100%;
}
.InputfieldColumnWidth {
    /* columns that are not 100% width */
    float: left;
    clear: none;
}
.InputfieldColumnWidthFirst {
    /* first column in a row of Inputfield columns */
    clear: both;
}
.InputfieldColumnWidth:not(.InputfieldColumnWidthFirst) {
    /* any column except first, in a row of Inputfield columns */
    margin-left: 1%;
}
.InputfieldPassword input {
    /* password input */
    width: 50%;
}
.LoginRegisterMessage {
    /* message notification */
    color: green;
    border: 1px solid green;
    font-weight: bold;
    padding: 10px 10px;
	margin: 5px 0;
	border-radius: 5px;
	line-height: 1.2;
}
.LoginRegisterError {
    /* error notification */
    color: rgb(228, 0, 0);
    border: 1px solid rgb(228, 0, 0);
    font-weight: bold;
    padding: 10px 10px;
	margin: 5px 0;
	border-radius: 5px;
	line-height: 1.2;
}

.Inputfield .login-input,
.Inputfield select {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.7;
    color: #60697b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid rgba(8, 60, 130, 0.07);
    border-radius: 0.4rem;
    box-shadow: 0 0 1.25rem rgba(30, 34, 40, 0.04);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.LoginRegisterLinks {
	list-style-type: none;
	padding-left: 0;
}

.Inputfield input[type="checkbox"] {
	-webkit-appearance: auto !important;
}