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

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
}

.auth {
    position: relative;
    background-position-y: top;
    background-size: auto 966px;
    background-repeat: no-repeat;
    background-position-x: calc(50% - 350px);
}

.auth:before {
    right: 0;
    left: 50%;
    z-index: 0;
    top: 793px;
    content: "";
    height: 77px;
    position: absolute;
    background: #e6cccc;
}

@media screen and (max-width: 768px),
       screen and (max-height: 768px) {
    .auth {
        background-image: none !important;
    }

    .auth:before {
        content: none;
    }
}