html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}


/* Push page content down so it doesn't hide behind navbars */
body {
    padding-top: 20px; /* adjust based on actual heights */
}

main {
    flex: 1;
}


/* GOOGLE FONTS */
.rouge-script-regular {
    font-family: "Rouge Script", cursive;
    font-weight: 400;
    font-style: normal;
}
.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
}

.tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
}
/* /GOOGLE FONTS */

.btn-scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0.1rem rgba(227, 229, 233, 0.25);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: all 0.2s linear, margin-right 0s;
    background-color: var(--bs-white);
}

    .btn-scroll-top:after {
        position: absolute;
        font-family: "bootstrap-icons" !important;
        content: "\f145";
        text-align: center;
        line-height: 3rem;
        font-size: 1.5rem;
        color: var(--bs-primary);
        left: 0;
        top: 0;
        height: 3rem;
        width: 3rem;
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 0.2s linear;
    }

    .btn-scroll-top.active-progress {
        visibility: visible;
        transform: translateY(0);
    }

@media (min-width: 320px) {
    .btn-scroll-top.active-progress {
        opacity: 1;
    }
}

.btn-scroll-top svg path {
    fill: none;
}

.btn-scroll-top svg.progress-square path {
    stroke: var(--bs-primary);
    stroke-width: 2;
    box-sizing: border-box;
    transition: all 0.2s linear;
}

.form-control:focus {
    border-color: #0084d5 !important;
    box-shadow: 0 0 0 0.15rem rgba(108, 92, 231, 0.35) !important;
}
.required-subtle {
    color: #eb2d4d !important;
}