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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.insereServico:hover,
.btnCadastroServico:hover {
  background-color: #0b1cb0;
}


/* Lista de serviços */
.formulario__cadastro_servicos {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  height: 300px;
  overflow-y: auto;
}

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

/* Alerta */
.alertaServico {
  display: none;
  font-family: 'Roboto', sans-serif;
  background-color: #f1f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
}

/* Responsivo */
@media (max-width: 600px) {
  .formServico {
    padding: 10px;
  }

  .insereServico,
  .btnCadastroServico {
    width: 100%;
  }
}
