/* Page layout */
body {
    max-width: 80ch;
    margin: auto;
}

/* Simple adjustments to the registration form to adhere to UO guidelines */
a {
    color:#007030;
}

/* Bold form labels */
label {
    font-weight: bold;
    margin-bottom: .5rem;
}

/* #header-logo {
    width: 300px;
} */

/* Navigation + Breadcrumbs */
/* nav {
    margin-top: 1rem;
}

nav.breadcrumb ol {
    padding-left: 1rem;
}

nav.breadcrumb li {
    list-style: none;
    display: inline;
}

nav.breadcrumb li + li::before {
    display: inline-block;
    margin: 0 0.25em;
    transform: rotate(15deg);
    border-right: 0.1em solid currentcolor;
    height: 0.8em;
    content: "";
} */

/* Card fieldsets */
.card-header {
    background: rgba(0,0,0, 0.07);
}

/* Submit button */
.form-button {
    display: inline-block;
    padding: 2px 6px;
}

/* Required Fields */
.required::after {
    content: " *";
    color: red;
} 
