/* SIMPLE FORM CARD */
.formCard {
  width: 400px;
  height: fit-content;
  padding: 20px;
  border-radius: 10px;
  background: #1A3636;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.formCardHeader {
  height: 7vh;
}
.formCardBack {
  height: 100%;
  cursor: pointer;
}
.formCardBack img {
  height: 70%;
}
.formCardBody {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.formCardColumn {
  width: 50%;
}
.formCard input, .formCard select {
  margin-top: 10px !important;
}
