* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Poppins-Regular, sans-serif;
    font-size: 12px;
}

.painel {
    width: 70%;
    padding: 30px;
    margin: 10px auto 10px auto;
    display:flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.div_imagem {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.alert {
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.35rem;
}

.alert-green {
    color: #00673f;
    background-color: #cceee1;
    border-color: #b3e6d2;
}

.alert-danger {
    color: #8b0d00;
    background-color: #fad0cc;
    border-color: #f8b9b3;
}

@media screen and (max-width: 1300px){
    .painel{
        grid-template-columns: 1fr;
    }

    .slider{
        display: none;
    }

    .div_login{
        justify-content: center;
    }
}

@media screen and (max-width: 1100px){
    .testDrive-div{
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: -30px !important;
    }
    .bubble {
        width: 300px !important;
        font-size: 12px !important;
    }
    .avatar {
        padding-top: 28px !important;
    }
}

@media screen and (max-width: 360px){
    .painel{
        background-color:transparent;
        box-shadow:none;
        padding: 10px 0px 30px 0px;
    }
}
