body {
    background-color: #f4f7fc;
}

#conteudo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    margin-bottom: 150px;
}

#informacoes_carro {
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#meus_veiculos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#meus_veiculos h2 {
    font-weight: 400;
    font-size: 22px;
}

#meus_veiculos img{
    width: 100px;
    padding-bottom: -30px;
}

#estrada {
    margin: auto;
    margin-top: -30px;
    background-color: #333;
    color: transparent;
    width: 80%;
    height: 10px;
    border-radius: 8px;
}

#carros {
    margin-top: 40px;
    width: 80%;
}

#carro {
    position: relative;
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0 10px 1px #33333363;
    margin-bottom: 20px;
}

#carro img {
    width: 40px;
}

#cadastrar {
    width: 80%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background-color: #003b1d;
    color: #fafafa;
    font-size: 16px;
    margin-top: 20px;
}

#cadastrar:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

#editar {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px !important;
}

#informacoes p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
}