.my-model-container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 20px 20px;
  position: relative;
  z-index: 9999;
  max-width: 750px;
  width: 90%;
  margin: auto;
  border-radius: 8px;
}
.my-model-form {
  max-height: 80vh;
  overflow: auto;
  padding: 5px;
}
.my-model-label {
  padding-bottom: 20px;
  color: #616161;
  display: block;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.my-model-input {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  color: black;
  /* margin-bottom: 15px; */
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* .my-model-submit-button {
  background-color: #5d5d5d;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 8px;
}

.my-model-submit-button:hover {
  background-color: #45a049;
} */

.close-button {
  position: absolute;
  top: -16px;
  right: -16px;
  border: none;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
  height: 32px;
  width: 32px;
  background: #c00000;
  border-radius: 50px;
}
.error-message {
  color: #ff0000;
  font-size: 11px;
  font-weight: normal;
  position: absolute;
  left: 0;
  bottom: 0;
}

