*{
    margin: 0;
    font-family: Poppins;
}
body{
    background-color: #fafbfc;
}
header{
    background-color: blueviolet;
    padding: 10px;
    text-align: center;
    color: #fff;
}
h1{    
    font-weight: 400;
}
main{
    padding: 30px 50px;
}

.card{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 15px;
    border-radius: 36px;
}

.lineInput{
    display: grid;
    margin-bottom: 10px;
}
input{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 36px;
    outline: 0;
}
button{
    cursor: pointer;
    border:0;
    padding: 15px;
    outline: 0;
    background-color: slateblue;
    color: #fff;
    border-radius: 36px;
    transition: all ease 0.3s;
}
button:hover{
    background-color: rgb(45, 34, 118);
}
.content{
    margin-top: 15px;
}
table{
    border-collapse: collapse;
    border: 1px solid #ccc;
    width: 100%;
}

table th{
    background-color: rgb(238, 238, 238);
}

table th, td{
    text-align: left;
    padding: 5px 5px;
}
table td img{
    width: 22px;
    margin-right: 10px;
}

.center{
    text-align: center;
}

.rodape{
    bottom: 0;
    height: 40px;
    position: fixed;
    width: 100%;    
    justify-content: center;
    display: flex;
    
}
.rodape a{
    text-decoration: none;
}

#btn-salvar{
    width: 100px;
    margin-right: 10px;
    margin-left: 15px;
}
#btn-cancelar{
    width: 140px;
}

td, th{
    border-width: 1px;
}

#sobre{
    width: 90px;
}

.cabecalho{
    justify-content: space-between;
}