#TrAccountsUserIcon {
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
}
#TrAccountsUserIcon .tr-accounts-user-button {
  width: 32px;
  height: 32px;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  border: 0;
}

#TrAccountsModal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 0;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s opacity linear;
}
#TrAccountsModal.show {
  opacity: 1;
  pointer-events: all;
}
#TrAccountsModal .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
#TrAccountsModal .modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  max-height: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#TrAccountsModal .modal-content .btn-group button {
  margin: 0;
  border-radius: 8px;
}
#TrAccountsModal .modal-content .btn-group button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#TrAccountsModal .modal-content .btn-group button:last-child {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#TrAccountsModal .modal-content button {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid blue;
  color: blue;
  font-size: 16px;
  padding: 8px;
  transition: background-color 0.2s ease-in-out;
}
#TrAccountsModal .modal-content button:hover {
  background-color: blue;
  color: #fff;
}

#TrAccountsLoginForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
}
#TrAccountsLoginForm *:not(:first-child) {
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 100%;
}
#TrAccountsLoginForm h1,
#TrAccountsLoginForm h2,
#TrAccountsLoginForm h3,
#TrAccountsLoginForm h4,
#TrAccountsLoginForm h5,
#TrAccountsLoginForm h6 {
  margin: 0;
  padding: 0;
}
#TrAccountsLoginForm label {
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
#TrAccountsLoginForm input[type=text],
#TrAccountsLoginForm input[type=password] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 8px;
}
#TrAccountsLoginForm .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#TrAccountsLoginForm .form-group .error {
  display: none;
}
#TrAccountsLoginForm .is-invalid {
  background-color: #ffcfcf;
  border: 1px solid #ff0000;
  border-radius: 8px;
  padding: 8px;
}
#TrAccountsLoginForm .is-invalid .error {
  display: block;
  color: #ff0000;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
#TrAccountsLoginForm .error-message {
  color: red;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}
#TrAccountsLoginForm .error-message:empty {
  display: none;
}

/*# sourceMappingURL=trAccounts.css.map */
