#input-output-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  min-height: 30rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fbf9ff;
}

form {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  gap: 0.6rem;
  background: #fff;
}

/* Styling the labels */
form label {
  color: rgba(0, 0, 0, 0.54);
  padding: 0;
  width: 20rem;
  font-size: 1rem;
  color: #1f2c3d;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
}

/* Styling the input fields */
form input[type="text"],
form input[type="date"],
form input[type="number"],
form input[type="email"],
form input[type="url"],
form select,
textarea {
  background-color: white;
  outline-width: 0;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.00938em;
  height: 2rem;
  margin-bottom: 10px;
  padding: 5px;
  width: 20rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="checkbox"] {
  accent-color: #6938ef;
  margin: 0.5rem 0px;
}

fieldset {
  width: 20rem;
  padding: 5px;
  line-height: 2.5rem;
  margin: 1rem 0px 0.5rem 0px;
}

legend {
  color: #1f2c3d;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

textarea {
  height: 7rem;
}

form h2 {
  margin: 0px;
  padding: 0px;
}

.customSelect {
  position: relative;
}

#inputArea {
  position: relative;
  display: flex;
  align-items: center;
}

.selectValue {
  margin-bottom: 0px !important;
}

#inputArea svg {
  position: absolute;
  right: 8px;
}

#selectOptions {
  position: absolute;
  width: 100%;
  z-index: 100;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0.5rem;
  padding: 0px;
  margin-top: 0.6rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

#selectOptions li {
  padding: 1rem;
}

#selectOptions li:hover {
  background: #f2f4f7;
}

#selectOptions li:focus {
  background: #f2f4f7;
}

#generate {
  display: flex;
  height: 3rem;
  padding: 14px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  border-radius: 8px;
  background: #6938ef;
  color: white;
  border: none;
  cursor: pointer;
  font-family: Arial;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
}

.hidden {
  display: none !important;
}

/* featureList is for release note generator */
#featureList {
  margin: 0px;
}

#featureList li {
  margin: 0.5rem 0px;
}

#generate svg {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1200px) {
  #input-output-container {
    flex-direction: column;
  }

  form {
    padding: 0.3rem;
    padding-top: 1rem;
  }

  form label {
    width: 100%;
  }

  /* Styling the input fields */
  form input[type="text"],
  form input[type="date"],
  form input[type="number"],
  form input[type="url"],
  input[type="email"],
  form select,
  textarea,
  fieldset {
    box-sizing: border-box;
    width: 100% !important;
  }
}
