#settings-form {
  width: 70%;
  max-width: 379px;
  height: 450px;
  padding: 20px;
  margin: auto;
  /* background-color: #f7f7f7; */
  border: 2px solid #17193724;
  border-radius: 8px;

  font-size: 1rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

#settings-form .label {
  display: block;
  font-weight: 500;
  margin: 0px 0px 8px 8px;
}

#settings-form .input {
  margin-bottom: 16px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #14142b;
}

#settings-form #submit {
  margin-top: auto;
  width: 100%;
  height: 35px;
  background: var(--bg-color);
  border: none;
  border-radius: 4px;

  color: white;
  font-weight: bold;
  letter-spacing: 0.75px;
  cursor: pointer;
}

#settings-form #submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
