.button {
  color: var(--dl-color-gray-black);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
.input {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
.textarea {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}
.list-item {
  display: list-item;
}
.teleport-show {
  display: flex !important;
  transform: none !important;
}
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
.Heading {
  font-size: 32px;
  font-family: Inter;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
.img-custom {
    width: 100px;
    height: 50px;
}
.signup-form-group {
  margin-bottom: 1rem;
}

.signup-form-label {
  display: inline-block;
  width: 120px;
  text-align: right;
  margin-right: 5px;
}

.signup-form-input {
  width: 200px;
}

.signup-error-message {
  color: red;
  font-size: 9pt;
  margin-top: 2px;
  min-height: 15px; /* Ensure a minimum height to keep space constant */
}

.signup-status-message {
  color: red;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  min-height: 20px; /* Ensure a minimum height to keep space constant */
}

.popup-message-container {
  position: fixed;
  top: 20%;
  right: 0;
  background-color: lightblue;
  padding: 10px;
}

.popup-message-highlight {
  background-color: lightblue;
}

.login-DialogContainer {
  /*    
  position: fixed; keeps the dialog box in a fixed position relative to the viewport.
  top: 50%; left: 50%; transform: translate(-50%, -50%); centers the dialog box both vertically and horizontally.
  width: 80%; max-width: 600px; sets the width to 80% of the viewport with a maximum width of 600px to ensure it doesn't become too wide.
  background-color: #f2f2f2; and border-radius: 15px; set the background color and rounded corners.
  padding: 20px; adds padding inside the dialog box.
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); adds a subtle shadow for better visibility.
  display: flex; flex-direction: column; align-items: center; justify-content: center; centers the contents of the dialog box.
  height: auto; max-height: 80%; sets the height to be only as tall as needed, with a maximum height of 80% of the viewport.
  overflow-y: auto; ensures that if the content exceeds the maximum height, a scrollbar will appear.
  */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  max-height: 80%;
  overflow-y: auto;
}
.login-DialogContainer-message {
  display: flex;
  align-items: center;
  padding: 0 10px; /* 10px margin on the left and right */
  text-align: center;
}

.login-DialogContainer-body {
  margin-top:20px;
  margin-bottom: 20px;
}


/* Styling for form buttons */
.login-DialogContainer-Buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.login-DialogContainer-Buttons button {
  width: 60px;
  height: 30px;
  border-radius: 5px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  cursor: pointer;
}

.invalid {
  border: 1px solid red;
}

.hidden {
  display: none;
}