/* Styles for text inputs */
.custom-textbox {
  font-size: 18px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #333;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

/* Placeholder text style */
.custom-textbox::placeholder {
  font-size: 16px;
  color: #888;
}

/* Styles for the submit button */
.custom-submit {
  font-size: 12px;
  border-radius: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  width: auto;              /* Auto width to adjust according to text */
  box-sizing: border-box;   /* Ensure padding and border are included in the width */
  text-align: center;       /* Center the text */
  display: inline-block;    /* Ensure button behaves correctly */
}
