.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.auth-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Native form inputs for statically server-rendered Identity (/Account) pages.
   MudBlazor input components require interactivity and can't be used here, so these
   are styled to blend with the MudBlazor theme. */
.account-field {
    margin-bottom: 1rem;
}

.account-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: var(--mud-palette-text-primary, rgba(0, 0, 0, 0.87));
}

.account-input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--mud-palette-text-primary, rgba(0, 0, 0, 0.87));
    background-color: transparent;
    border: 1px solid var(--mud-palette-lines-inputs, rgba(0, 0, 0, 0.42));
    border-radius: var(--mud-default-borderradius, 4px);
    box-sizing: border-box;
}

.account-input:focus {
    outline: none;
    border-color: var(--mud-palette-primary, #594ae2);
    box-shadow: 0 0 0 1px var(--mud-palette-primary, #594ae2);
}

.account-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.account-checkbox input {
    width: 1.15rem;
    height: 1.15rem;
}

.account-checkbox label {
    margin: 0;
}
