html, body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #005bbb;
}

a:hover, .btn-link:hover {
    color: #004a97;
}

/* Keep Bootstrap defaults for buttons; page-specific components can theme their own CTAs. */

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.35), 0 0 0 0.25rem rgba(0, 91, 187, 0.20);
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.register-input,
.forgot-input,
.login-input {
    width: 100%;
    margin: auto;
    color: white;
    margin-bottom: 10px;
    line-height: 25px;
    border: 1px solid #929292;
    padding: 10px;
    border-radius: 15px;
    background: #232443;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}