.clickable {
  cursor: pointer;
}

.disabled {
  cursor: not-allowed;
  background-color: #eee;
  color: #666;
}

.hidden {
  display: none;
}

.breach-detection-wrapper {
  background-color: var(--env-block-background-color);
  border: 2px solid black;
  font-family: var(--env-font-family);
  color: var(--env-block-font-color);
  max-width: 60%;
  margin: 1em auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.breach-detection__form-container {
    padding: 1em;
}

.breach-detection__form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
}

.breach-detection__input {
  font-size: 1.1em;
}

.breach-detection__email-field {
  width: 100%;
  margin-bottom: 1em;
}

.breach-detection__input-label {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.breach-detection__input-field {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  padding: 1em;
  text-align: center;
  font-size: 1.1em;
}

.breach-detection__required-border {
  border: 2px solid;
  border-radius: 2em;
  width: -webkit-fill-available;
}

.breach-detection__err {
  color: red;
  font-size: 0.875em;
  margin-top: 0.25em;
}

.breach-detection__invalid {
  border-color: red;
}

.breach-detection__button {
  padding: 1em;
  background-color: gray;
  color: white;
  border:  2px solid gray;
  border-radius: 2em;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.breach-detection__button:hover {
  background-color: var(--env-button-hover-background-color);
  color: black;
  border:  2px solid black;
}

.breach-detection__read-more-button {
  padding: 1em;
  background-color: #009ADA;
  color: white;
  border:  2px solid #009ADA;
  border-radius: 1em;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.breach-detection__read-more-button:hover {
  background-color: var(--env-button-hover-background-color);
  color: black;
}

.breach-detection__err-container {
  padding-left: 1em;
  padding-right: 1em;
}

.breach-detection__search-results {
  margin: auto;
  max-width: 60%;
  text-align: center;  
}

.breach-detection__breached-wrapper {
  margin-bottom: 1em;
  padding: 2em;
  border: 1px solid var(--env-block-border-color);
  border-radius: 0.25em;
  background-color: var(--env-block-background-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
}

.breach-detection__breached-results {
  margin-top: 0.5em;
}

.breach-detection__error-icon {
  background-image: url(/images/18.75dfc89199c258bdcd110/1761037958424/icon_exclamation_mark_red.svg);
  background-repeat: no-repeat;
  background-position: center center;
  /*background-size: 48px 48px;*/
  padding-top: 4em;
  padding-bottom: 4em;
}

.breach-detection__breached-title {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 1em;
}

.breach-detection__breached-msg {
  margin-top: 0.5em;
}

.breach-detection__breached-msg-p {
  margin-block-start: unset;
  margin-block-end: unset;
}

.breach-detection__seperator {
  height: 1px;
  margin: 1em 0;
}

.breach-detection__no-breach-wrapper {
  margin-bottom: 1em;
  padding: 2em;
  border: 1px solid var(--env-block-border-color);
  border-radius: 0.25em;
  background-color: var(--env-block-background-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.breach-detection__no-breach {
  font-weight: bold;
  font-size: 1.1em;
}

.breach-detection__no-breach-title {
  font-weight: bold;
  font-size: 1.1em;
}

.breach-detection__no-breach-msg {
  margin-top: 0.5em;
}
