.form-card {
  padding: 1.5rem 3rem;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

[data-theme="dark"] .form-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-titulo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

[data-theme="dark"] .form-titulo {
  color: white;
}

.form-hr {
  width: 80%;
  margin-bottom: 2rem;
}

[data-theme="dark"] .form-hr {
  background-color: white;
}

.form-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.form-campo {
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
  padding: 10px 30px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: #f7f7f7;
}

.form-campo label {
  text-transform: uppercase;
  font-size: 1.1rem;
}

.form-campo input {
  border: none;
  width: 100%;
  outline: none;
  height: 3rem;
  font-size: 1.3rem;
  background-color: transparent;
}

.form-campo textarea {
  border: none;
  width: 100%;
  outline: none;
  height: auto;
  font-size: 1.3rem;
  background-color: transparent;
}

.form-campo select {
  border: none;
  width: 100%;
  outline: none;
  height: 3rem;
  font-size: 1.3rem;
  cursor: pointer;
  background-color: transparent;
}

.form-boton-wrapper {
  width: 80%;
  display: flex;
  align-items: center;
}

.form-boton {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 3.5rem;
  background-color: var(--tertiary-bg-color);
  border-radius: 25px;
  border: none;
  color: white;
  font-size: 2rem;
  transition: all 0.5s ease-in-out;
}

.form-boton:hover {
  background-color: rgb(4, 85, 4);
  box-shadow: 0 0 0 3px rgba(4, 85, 4, 0.2);
}

.del-link{
  color: red!important;
  cursor: pointer;
}

[data-theme="dark"] .del-link{
  color: red!important;
}
.icon-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}