html {
    position: relative;
    min-height: 100%;
    font-size: 1rem;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
}

.wrapper {
    height: 100vh;
    font-family: 'DM Sans', Arial, sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
}

header .logo {
    height: 1.75rem;
}

header.container-fluid {
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.container {
    background-color: white;
}

.userform {
    outline: 0.2rem solid #12d991;
    border-radius: 0.2rem;
    max-width: 500px;
}

.userform .btn {
    text-transform: uppercase;
}

.userform-label {
    font-size: 1rem;
    font-weight: 500;
}

#logo-mobile {
    display: none;
}

#logo {
    display: block;
}

footer {
    color: white;
}

@media (min-width: 576px) {

    #logo-mobile {
        display: none;
    }

    #logo {
        display: block;
    }

    header .logo {
        height: 2rem;
    }

    header.container-fluid {
        padding-top: 2rem;
        padding-left: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    html {
        font-size: 1rem;
    }
    .userform {
        max-width: 500px;
    }

    footer {
        color: white;
    }
}

@media (min-width: 768px) {

    header .logo {
        height: 2.25rem;
    }
    header.container-fluid {
        padding-top: 2rem;
        padding-left: 2.25rem;
        padding-bottom: 2rem;
        margin-bottom: 3rem;
    }
    .userform {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    header .logo {
        height: 2.5rem;
    }

    header.container-fluid {
        padding-top: 2.25rem;
        padding-left: 2.75rem;
        padding-bottom: 2.25rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1280px) {
    header .logo {
        height: 3rem;
    }

    header.container-fluid {
        padding-top: 2.5rem;
        padding-left: 3rem;
        padding-bottom: 2.5rem;
        margin-bottom: 5rem;
    }
}

/*Fonts*/
.primary-headline-font {
    font-size: 1.3rem;
}

.primary-subhead-font {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-font {
    font-size: 0.8rem;
}

/*Colors*/

/*Text*/
.primary-green-text {
    color: #8c9141;
}

.primary-darkbrown-text {
    color: #653A2B;
}

.primary-charcoal-text {
    color: #282828;
}

.primary-gray-text, .carrier-primary-gray-text {
    color: #999B9E;
}

.primary-white-text {
    color: #FAFAFA;
}

.secondary-red-text {
    color: #cf5b5b;
}

.secondary-yellow-text {
    color: #f3c442;
}
.secondary-blue-text {
    color: #14274d;
}

.secondary-brown-text {
    color: #a78f77;
}


/*Background*/
.primary-green-bg {
    background-color: #12d991;
}

.primary-blue-bg {
    background-color: #809EFF;
}

.primary-darkbrown-bg {
    background-color: #653A2B;
}

.primary-charcoal-bg {
    background-color: #282828;
}

.primary-gray-bg {
    background-color: #f0f0f0;
}

.secondary-green-bg {
    background-color: #053636;
}

.secondary-gray-bg {
    background-color: #C2C2BD;
}

.secondary-red-bg {
    background-color: #cf5b5b;
}

.secondary-blue-bg {
    background-color: #17215C;
}


/*Inputs*/

input:valid {
    background-color: white;
    color: black;
    color-scheme: dark;
}

input:invalid::placeholder, input:valid::placeholder {
    color: gray;
}

input:invalid {
    background-color: white;
    color: red;
    color-scheme: dark;
}

input:focus {
    color-scheme: light;
}
/*Tooltips*/
.tooltip-custom {
    position: relative;
    display: inline-block;
}

    .tooltip-custom .tooltiptext {
        visibility: hidden;
        background-color: #17215C;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 50%;
        margin-left: -60px;
    }

        .tooltip-custom .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #17215C transparent transparent transparent;
        }

    .tooltip-custom:hover .tooltiptext {
        visibility: visible;
        content: attr(title);
    }
