/**
 * GENERAL FONT AND TYPOGRAPHY
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');

html, body, td, th, p, li {
    font-family: Roboto, sans-serif;
    color: #000000;
    font-size: 1rem;
    line-height: 1.5rem;
}

h1 {
    font-size: 165%;
    font-weight: bold;
}
h2 {
    font-size: 140%;
    font-weight: bold;
}
h3 {
    font-size: 130%;
    font-weight: bold;
}
h4 {
    font-size: 120%;
    font-weight: bold;
}
h5 {
    font-size: 110%;
    font-weight: bold;
}


/**
 * TOP AND NAVBAR
 */

a.navbar-brand img {
    height: 25px;
}


/**
 * BUTTONS AND COLOR UTILITIES
 */

a:not(.btn) {
    color: #90a543;
    font-weight: bold;
    text-decoration: none;
}

.btn.btn-primary {
    background-color: #90a543;
    border-color: #90a543;
    color: white;
}
.btn.btn-primary[aria-expanded="true"],
.btn.btn-primary[aria-pressed="true"],
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: white;
    border-color: #90a543;
    color: #90a543;
}

.btn.btn-secondary {
    background-color: white;
    border-color: #90a543;
    color: #90a543;
}
.btn.btn-secondary[aria-expanded="true"],
.btn.btn-secondary[aria-pressed="true"],
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:hover {
    background-color: #90a543;
    border-color: #90a543;
    color: white;
}

.bg-green {
    background-color: #90a543;
}


/**
 * GENERAL FORM CONTROLS
 */

textarea.form-control,
.form-floating > textarea.form-control {
    height: 2in;
}

.form-floating > input[type="file"].form-control {
    padding: 2rem 1.5rem;
}

div.fakefloatinginput {
    border: 1px solid rgba(0, 0, 0, 0.176);
    padding-left: 0.75rem;
}
div.fakefloatinginput.fakefloatinginput-disabled {
    background-color: rgb(233, 236, 239);
}
div.fakefloatinginput > p {
    margin-bottom: 0;
    color: rgba(33, 37, 41, 0.65);
    font-size: 14px;
}

