/** {
    outline: 1px solid green !important;
}*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    position: relative;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #eeeeee;
}

.home-button-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.tech_support__wrap {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: auto;
    color: #848b90;
}

.tech_support__icon {
    margin-right: 5px;
}

.tech_support__text {
    font-size: 14px;
    color: #848b90;
}






.button {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    padding: 10px 20px 8px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.5);
    line-height: 1.25;
    background: #0fbbf8;
    user-select: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
    transition: background-color .6s ease;
}

.button:hover {
    background: #00a9F3;
}

.button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform-style: flat;
    transform: translate3d(-50%, -50%, 0);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    transition: width .3s ease, height .3s ease;
}

.button:active::after {
    width: 300px;
    height: 300px;
}

.top-bar {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    /* justify-content: flex-end; */
    padding: 5px;
    background-color: #eeeeee;
    z-index: 1;
}

.hr-line {
    width: 100%;
    margin: 20px 0;
    padding: 0;
    height: 0;
    border: none;
    border-top: 1px solid #ff6d00;
}

.information-form-container {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.information-form-container input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    body, html {
        font-size: 14px;
    }
    .button {
        padding: 9px 20px 7px 20px;
    }

    .tech_support__wrap {
        display: none;
    }

}



