@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

.formAcessorio {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.cadastraAcessorio__titulo {
  font-size: 25px;
  color: rgb(16, 33, 227);
  font-family: 'Roboto';
  text-align: center;
  margin-bottom: 20px;
}

.input__acessorio {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Roboto';
  box-sizing: border-box;
}

.col-md-6 {
  width: 100%;
  margin-bottom: 15px;
}

.col-12 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.insereAcessorio,
.btnCadastro {
  background-color: #003bfc; /* Azul Royal */
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.insereAcessorio:hover,
.btnCadastro:hover {
  background-color: #002bbd;
}

.formulario__cadastro_acessorio {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  height: 300px;
  overflow-y: auto;
}

.lista_acessorio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-family: 'Roboto';
}

@media (max-width: 600px) {
  .formAcessorio {
    padding: 10px;
  }

  .col-12 {
    flex-direction: column;
    align-items: stretch;
  }

  .insereAcessorio,
  .btnCadastro {
    width: 100%;
  }
}
