section {
  padding: 20px;
  margin-bottom: 20px;
  background: #075e54b7;
  max-width: 500px;
  width: 100%;
  border-radius: 5px;
  margin: auto;
  margin-top: 30px;
  box-shadow: 5px 2px 6px rgba(0, 0, 0, 0.329);
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  gap: 10px;
}

form img {
  width: 200px;
  margin: auto;
}

input, textarea, button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #075E54;
  color: white;
  cursor: pointer;
  border: none;
}

button:hover {
  opacity: 0.7;
}

.cores-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: auto;
  margin-top: 15px;
}

.radio-color {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.radio-color input {
  display: none;
}

.radio-color span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--cor);
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.radio-color input:checked + span {
  border: 3px solid #2196f3; /* borda azul */
  box-shadow: 0 0 0 3px #bbdefb; /* glow leve */
}

div.status span{
  width: 20px;
  height: 20px;
}

.danger {
  background-color: #ff0000;
}

.danger:hover {
  background-color: #ff000064;
}
