/*
 * Small project reset replacing the unused Bootstrap dependency.
 * It keeps the baseline rendering and form feedback states the site uses,
 * without browser-specific selectors that generate console warnings.
 */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-size: 1rem;
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul {
    padding-left: 2rem;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: .875em;
}

img, svg {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

label {
    display: inline-block;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    line-height: inherit;
}

button, select {
    text-transform: none;
}

textarea {
    resize: vertical;
}

[hidden], .d-none {
    display: none !important;
}

.alert {
    position: relative;
    border: 1px solid transparent;
    border-radius: .375rem;
}

.alert-success {
    color: #0a3622;
    background-color: #d1e7dd;
    border-color: #a3cfbb;
}

.alert-danger {
    color: #58151c;
    background-color: #f8d7da;
    border-color: #f1aeb5;
}
