* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing--header {
    height: 80%;
    background-color: #ececec;
    position: relative;
    text-align: center;
}

.landing--header img {
    width: 80%;
}

.scroll-button-bottom {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.text-chamada p {
    font-size: 20px;
    color: #1b1b1b;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

.btn-contato a {
    width: 220px;
    height: 50px;
    background-color: #1b1b1b;
    text-decoration: none;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.landing--sobre {
    padding-top: 80px;
    margin-bottom: 150px;
}

.landing--sobre__wraper {
    padding: 0 10px;
}

.landing--sobre h2 {
    margin: 25px 0;
    font-size: 28px;
    color: #1b1b1b;
}

.landing--sobre p {
    font-size: 18px;
    color: #505050;
    position: relative;
}

.landing--container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 30px;
}

.landing--container::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: calc(50% - 15px);
    height: 1.5px;
    background-color: #1b1b1b;
}

.landing--container::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    width: calc(50% - 15px);
    height: 1.5px;
    background-color: #1b1b1b;
}

.landing--container img {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
}


.landing--qr {
    background-color: #ececec;
    padding: 40px;
    display: flex;
    margin-bottom: 30px;
}

.landing--qr_text {
    padding-left: 20px;
}

.landing--qr_text h3 {
    margin-bottom: 10px;
    color: #1b1b1b;
}

.landing--qr_text p {
    font-size: 17px;
    color: #505050;
}

@media screen and (max-width: 768px) {
    .landing--qr  {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .landing--qr_text {
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
}

.landing--lembrete {
    margin: 80px 0;
}

.landing--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
}

/*
=================================================================
*/
.box-message {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 15px;
    background-color: #ccc;
    border-radius: 3px;
}

.box-message p {
    text-align: center;
}

.box-message.error {
    background-color: rgb(204, 151, 151);
}

.auth {
    height: 100%;
}

.auth--container {
    background-color: rgb(248, 248, 248);
    width: 768px;
    height: 400px;
    display: flex;
}

.auth--container__box-img {
    width: 50%;
    background-color: #e7e7e7;
}

.auth--container__box-img img {
    max-width: 50%;
}

.auth--container__form {
    width: 50%;
    padding: 50px 20px;
}

.auth--container__form h3 {
    margin-bottom:  10px;
}

.auth--container__form input {
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
    outline: none;
    padding-left: 5px;
}

.auth--container__form button {
    width: 100%;
    height: 35px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #505050;
    color: #ccc;
}
