body{
font-family:Arial;
margin:0;
background:#f5f5f5;
}

.login{
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.login-box{
background:white;
padding:30px;
border-radius:10px;
width:300px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

input{
width:100%;
padding:10px;
margin:10px 0;
}

button{
width:100%;
padding:10px;
background:#198754;
color:white;
border:none;
cursor:pointer;
}
.menu{
background:#198754;
color:white;
padding:15px;
display:flex;
justify-content:space-between;
}

.menu a{
color:white;
margin:0 10px;
text-decoration:none;
}

.container{
padding:20px;
}

.cards{
display:flex;
gap:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
flex:1;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.form{
margin-bottom:20px;
}

table{
width:100%;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

th, td{
padding:12px;
text-align:left;
border-bottom:1px solid #eee;
}

th{
background:#198754;
color:white;
}
/* FORMULÁRIOS */

.form{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:20px;
}

.form input{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
flex:1;
min-width:200px;
}

.form button{
background:#198754;
color:white;
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

.form button:hover{
background:#146c43;
}

/* TABELAS */

table{
width:100%;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

th, td{
padding:12px;
text-align:left;
border-bottom:1px solid #eee;
}

th{
background:#198754;
color:white;
}

td button{
background:#dc3545;
color:white;
border:none;
padding:5px 10px;
border-radius:5px;
cursor:pointer;
}

td button:hover{
background:#bb2d3b;
}

/* RESPONSIVO */

@media(max-width:768px){

.form{
flex-direction:column;
}

.cards{
flex-direction:column;
}

.menu{
flex-direction:column;
gap:10px;
}

}
/* SELECT */

select{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
flex:1;
min-width:200px;
background:white;
}

/* TITULOS */

h1{
margin-bottom:20px;
}

/* BOTÃO VENDA */

.form button{
background:#198754;
color:white;
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

.form button:hover{
background:#146c43;
}

/* TABELA VENDAS */

table{
margin-top:20px;
}

/* MENU RESPONSIVO */

.menu nav{
display:flex;
gap:15px;
}

@media(max-width:768px){

.menu nav{
flex-wrap:wrap;
justify-content:center;
}

}
.cadastro-link{
text-align:center;
margin-top:15px;
}

.cadastro-link a{
color:#198754;
text-decoration:none;
font-weight:bold;
}
.boas-vindas{
padding:20px;
background:#f5f5f5;
}

.boas-vindas h2{
margin:0;
font-size:20px;
color:#333;
}
.home-topo{
background:#198754;
color:white;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.home-topo a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
text-align:center;
padding:60px 20px;
background:#f5f5f5;
}

.btn{
background:#198754;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:20px;
}

.recursos{
padding:40px 20px;
text-align:center;
}

.cards{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:white;
padding:20px;
width:250px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
border-radius:8px;
}

.sobre{
padding:40px;
background:#f5f5f5;
text-align:center;
}

.footer{
background:#198754;
color:white;
text-align:center;
padding:15px;
}

.login{
padding:40px;
}
.btn-sair{
background:#dc3545;
color:white;
border:none;
padding:8px 15px;
border-radius:5px;
cursor:pointer;
margin-left:20px;
width:auto;
}

.btn-sair:hover{
background:#bb2d3b;
}