@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  text-decoration: none; }

.container-form-recipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  margin-top: 100px;
  height: auto;
  position: relative;
  overflow-y: auto;
  background-color: #e8e8f0; }

.container-form-recipe form {
  box-shadow: none; }

/* Container do campo de ingrediente */
.ingredient-field {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Espaço entre input e botão */
  margin-bottom: 8px; }

/* Ajusta o tamanho do input */
.ingredient-input {
  flex: 1;
  /* Faz o input ocupar o máximo de espaço possível */ }

.container-form-recipe small {
  color: white;
  margin: 0 0 15px 5px;
  font-weight: 900; }

/* Botão de remoção */
button.remove-btn {
  position: absolute;
  right: 10px;
  top: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  background-color: transparent; }

.edit-remove-btn {
  position: absolute;
  right: 10px;
  top: 35px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  background-color: transparent; }

.dinamic-edit-remove-btn {
  position: absolute;
  right: 10px;
  top: 19px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  background-color: transparent; }

i.btn-remove-item {
  color: red; }

.edit-add-ingredient {
  width: 100%;
  background-color: #b8d840;
  height: 40px;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all linear 160ms;
  font-weight: 900; }

.edit-add-ingredient:hover {
  transform: scale(1.05); }

.container-form-recipe textarea {
  min-width: 100%;
  border-radius: 8px;
  height: 180px;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  outline: none;
  border: none; }

.container-form-recipe select {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none; }

.div-recipes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  background-color: #383890;
  padding: 5px;
  box-shadow: 1px 2px 10px 2px #000; }

.div-recipes p {
  padding: 10px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden; }

.div-recipes img {
  max-width: 285px;
  min-width: 285px;
  max-height: 285px;
  min-height: 285px;
  border-radius: 8px; }

.content .recipe-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 320px;
  padding: 10px;
  gap: 10px; }

.content .back {
  width: 100%; }

.content .back .fa-circle-arrow-left {
  color: #383890;
  cursor: pointer; }

.content .recipe-details img {
  max-width: 100%;
  margin-top: -10px; }

.content .recipe-details .name-recipe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #383890;
  margin-top: -10px;
  gap: 10px;
  padding: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px; }

.content .recipe-details .name-recipe h3 {
  color: #b8d840;
  font-size: 1.2rem;
  text-align: center; }

.content .recipe-details .actions {
  display: flex;
  justify-content: center;
  padding: 15px;
  gap: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #383890; }

.content .recipe-details .actions i {
  color: #b8d840;
  font-size: 1.5rem; }

.content .recipe-details ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 0 16px;
  max-width: 100%; }

.recipe-details p {
  font-weight: 900; }

.recipe-details small {
  font-weight: 400;
  font-size: 0.8rem; }

.content .recipe-details i {
  color: #383890; }

.content .recipe-details h3 {
  color: #383890; }

@media screen and (max-width: 468px) {
  .div-recipes {
    width: 300px; } }

/*# sourceMappingURL=recipe.css.map */
