<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-bg-color: #F7F8F8;
    --orange: #FF5E3A;
    --grey: #D9D9D9;
}

html, body {
    font-family: 'Montserrat', 'sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--main-bg-color);
    height: 100vh;
}

h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 59px;
}
h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
}

.button {
    width: 280px;
    height: 50px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.button-primary {
    background-color: #FF5E3A !important;
    border-radius: 5px !important;
    color: #FFFFFF !important;
    border: none !important;
}

.button-outline {
    background-color: transparent !important;
    color: #FF5E3A !important;
    font-family: 'Montserrat' !important;
    border: none !important;
}

.button-outline-border {
    background-color: transparent !important;
    color: #FF5E3A !important;
    font-family: 'Montserrat' !important;
    border: 1px solid #FF5E3A;
    border-radius: 5px;
}

.button-icone {
    color: #FF5E3A !important;
    border: none !important;
}

.floated-icon {
    font-size: 5rem !important;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.grow:disabled {
    transition: none;
}

.grow:hover:disabled {
    transform: none;
}

.grow {
    transition: all .2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.1);
    }
.nav &gt; li &gt; a.active,
.nav &gt; li &gt; a:hover,
.nav &gt; li &gt; a:focus {
    background-color: white !important;
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
@media all and (max-width:768px) {

    h1 {
        font-size: 38px;
    }
    .button {
        width: auto;
    }

    .button-outline {
        border: 1px solid #FF5E3A;
        border-radius: 5px;
    }

    .button-icone {
        font-size: 3rem;
    }

    .floated-icon {
        position: fixed;
        bottom: 10px;
        right: 10px;
    }

    footer {
        display: none;
    }
}
</pre></body></html>