* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

header {
  background-color: #69cff6;
  color: #ffffff;
  height: 40px;
  margin-top: 3px;
  margin-left: 3px;
  margin-right: 3px;
}

.header-container {
  max-width: 1200px;
  margin: 0 center;
  display: fle;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}

h1 {
  margin: 0;
  text-align: left;
}

main {
  width: 80%;
  margin: 15px auto 0;
}

#stockForm input[name="search"] {
  grid-area: search;
}

#stockForm input[name="porder"] {
  grid-area: porder;
}

#stockForm input[name="rol"] {
  grid-area: rol;
}

#stockForm input[name="bin"] {
  grid-area: bin;
}

#stockForm button {
  grid-area: button;
}

#stockForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas:
    "porder search"
    "rol bin"
    "button button";
}

#stockForm * {
  margin: 7px;
  padding: 7px;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

#stockForm button {
  outline: none;
  background-color: #69cff6;
  color: white;
  border: 5px solid transparent;
  cursor: pointer;
}

#stockForm input {
  border: 3px solid #69cff6;
  outline: none;
}

#stockForm input:focus {
  border: 3px solid #c7c7c7;
}

#stockForm button:active {
  border-color: #c7c7c7;
}

.stock {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: 2px solid #494949;
  background-color: #cfcfcf1f;
  color: #2f2f2f;
  border-radius: 10px;
}

.stock div {
  width: 100%;
  padding: 10px;
  text-align: center;
}

.stock div * {
  margin: 5px;
}

.search-container {
  float: left;
  margin: 5px;
}

.search-container input[type="text"] {
  padding: 5px;
  border: none;
  font-size: 16px;
}

.search-container button[type="submit"] {
  padding: 5px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.logo img {
  max-width: 100%;
  height: 39px;
}

.empty {
  flex-grow: 1;
}