/* CSS variables. */
:root {
  --PhoneInput-color--focus: #03b2cb;
  --PhoneInputInternationalIconPhone-opacity: 0.8;
  --PhoneInputInternationalIconGlobe-opacity: 0.65;
  --PhoneInputCountrySelect-marginRight: 0.35em;
  --PhoneInputCountrySelectArrow-width: 0.3em;
  --PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
  --PhoneInputCountrySelectArrow-borderWidth: 1px;
  --PhoneInputCountrySelectArrow-opacity: 0.45;
  --PhoneInputCountrySelectArrow-color: inherit;
  --PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountrySelectArrow-transform: rotate(45deg);
  --PhoneInputCountryFlag-aspectRatio: 1.5;
  --PhoneInputCountryFlag-height: 1em;
  --PhoneInputCountryFlag-borderWidth: 1px;
  --PhoneInputCountryFlag-borderColor: rgba(0, 0, 0, 0.5);
  --PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountryFlag-backgroundColor--loading: rgba(0, 0, 0, 0.1);
}
.PhoneInput {
  /* This is done to stretch the contents of this component. */
  display: flex;
  align-items: center;
}
.PhoneInputInput {
  /* The phone number input stretches to fill all empty space */
  flex: 1;
  /* The phone number input should shrink
	   to make room for the extension input */
  min-width: 0;
}
.PhoneInputCountryIcon {
  width: calc(1em * 1.5);
  width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
  height: 1em;
  height: var(--PhoneInputCountryFlag-height);
}
.PhoneInputCountryIcon > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.PhoneInputCountryIcon--square {
  width: 1em;
  width: var(--PhoneInputCountryFlag-height);
}
.PhoneInputCountryIcon--border {
  /* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
  /* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
  /* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
  /* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}
.PhoneInputCountryIconImg {
  /* Fixes weird vertical space above the flag icon. */
  /* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
  display: block;
  /* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
  width: 100%;
  height: 100%;
}
.PhoneInputInternationalIconPhone {
  opacity: 0.8;
  opacity: var(--PhoneInputInternationalIconPhone-opacity);
}
.PhoneInputInternationalIconGlobe {
  opacity: 0.65;
  opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}
/* Styling native country `<select/>`. */
.PhoneInputCountry {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-right: 0.35em;
  margin-right: var(--PhoneInputCountrySelect-marginRight);
}
.PhoneInputCountrySelect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.PhoneInputCountrySelect[disabled] {
  cursor: default;
}
.PhoneInputCountrySelectArrow {
  display: block;
  content: '';
  width: 0.3em;
  width: var(--PhoneInputCountrySelectArrow-width);
  height: 0.3em;
  height: var(--PhoneInputCountrySelectArrow-width);
  margin-left: 0.35em;
  margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
  border-style: solid;
  border-color: inherit;
  border-color: var(--PhoneInputCountrySelectArrow-color);
  border-top-width: 0;
  border-bottom-width: 1px;
  border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  border-left-width: 0;
  border-right-width: 1px;
  border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  transform: rotate(45deg);
  transform: var(--PhoneInputCountrySelectArrow-transform);
  opacity: 0.45;
  opacity: var(--PhoneInputCountrySelectArrow-opacity);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
  opacity: 1;
  color: #03b2cb;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
  box-shadow: 0 0 0 1px #03b2cb, inset 0 0 0 1px #03b2cb;
  box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
  opacity: 1;
  color: #03b2cb;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.PhoneInput .PhoneInputInput {
  padding: 4px 11px;
  border: 1px solid #90a4ae;
  border-radius: 4px;
  outline: 0;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s;
}
.PhoneInput .PhoneInputInput:focus,
.PhoneInput .PhoneInputInput:hover:not(:disabled) {
  border: 1px solid #0074bb;
}
.PhoneInput .PhoneInputInput:focus {
  box-shadow: 0 0 0 2px rgba(0, 116, 187, 0.2);
}
.PhoneInput .PhoneInputInput:disabled {
  background-color: #eceff1;
  cursor: not-allowed;
}
.PhoneInputCountry .PhoneInputFlag {
  margin-left: 10px;
  cursor: pointer;
}
.PhoneInputCountry > ul {
  position: absolute;
  z-index: 999;
  top: 32px;
  list-style: none;
  padding: 3px 0;
  margin: 0;
  overflow-x: auto;
  background-color: #ffffff;
  line-height: 1.5;
  border-radius: 4px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.PhoneInputCountry > ul > li {
  display: flex;
  flex-wrap: nowrap;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 1.5;
  align-items: center;
  cursor: pointer;
}
.PhoneInputCountry > ul > li.active {
  background-color: #b3def9;
}
.PhoneInputCountry > ul > li:hover {
  background-color: rgba(179, 222, 249, 0.35);
}
.PhoneInputCountry > ul > li > div:last-child {
  margin-left: 0.8rem;
  white-space: nowrap;
}
.PhoneInputCountry > ul > li > div:last-child > span {
  display: inline-block;
  margin-left: 5px;
  color: #90a4ae;
}
.PhoneInputCountry .PhoneInputFlag {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.PhoneInputCountry.disabled .PhoneInputFlag {
  cursor: not-allowed;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  overflow-y: auto;
  display: block;
  background: linear-gradient(180deg, #ebf1fd 100%, #e5ecf9 200%);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
  -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
.alert {
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: none;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.43;
  display: flex;
  padding: 6px 16px;
  color: #501416;
  background-color: #f9eaeb;
  margin: 1rem 0;
  width: 100%;
}
.alert .alert-svg-icon-section {
  margin-right: 12px;
  padding: 7px 0;
  display: flex;
  font-size: 22px;
  opacity: 0.9;
  color: #bd0005;
}
.alert .alert-svg-icon-section .alert-svg-icon {
  user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-size: inherit;
  color: #bd0005;
}
.alert .messages {
  padding: 8px 0px;
}
.alert .messages p {
  display: inline;
  word-break: break-word;
}
.mdc-card {
  border-radius: 0%;
}
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: linear-gradient(180deg, #ebf1fd 100%, #e5ecf9 200%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 62px;
}
.header #sign-up {
  position: absolute;
}
#reactNav {
  position: sticky;
  top: 0;
  padding: 0;
  z-index: 99;
  margin-top: 16px;
}
.page-wrapper {
  min-height: 100vh;
  position: relative;
}
.page-wrapper #loginForm {
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .page-wrapper #loginForm {
    display: flex;
    justify-content: center;
  }
}
.page-wrapper #loginForm .login-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(var(--vh, 100vh) - 62px - 16px);
}
@media (min-width: 769px) {
  .page-wrapper #loginForm .login-form {
    width: 342px;
  }
}
.page-wrapper #loginForm .login-form .header {
  margin: 0px -16px;
}
.page-wrapper #loginForm .login-form .main .everbridge-logo-section {
  display: flex;
  justify-content: center;
}
.page-wrapper #loginForm .login-form .main .everbridge-logo-section .everbridge-logo {
  margin-top: 10px;
  margin-bottom: 10px;
}
.page-wrapper #loginForm .login-form .main .title {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
}
.page-wrapper #loginForm .login-form .main .title-tip {
  font-size: 14px;
  margin-bottom: 20px;
}
.page-wrapper #loginForm .login-form .main #userNameInput {
  margin-bottom: 20px;
}
.page-wrapper #loginForm .login-form .main .recaptcha {
  margin-bottom: 20px;
}
.page-wrapper #loginForm .login-form .main #signIn {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.page-wrapper #loginForm .login-form .main #or {
  margin-bottom: 20px;
}
.page-wrapper #loginForm .login-form .sms-consent {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #405172;
  text-align: center;
  max-width: 570px;
  width: max-content;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 769px) {
  .page-wrapper #loginForm .login-form .sms-consent {
    max-width: initial;
    margin-left: 0;
    transform: none;
    width: auto;
  }
}
@media (min-height: 600px) {
  .page-wrapper #loginForm .login-form .sms-consent {
    margin-bottom: 10vh;
  }
}
.page-wrapper #loginForm .login-form .sms-consent a {
  color: #0000ee;
}
.page-wrapper #loginForm .login-form .footer {
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 14px;
}
.page-wrapper #loginForm .login-form .footer .use-phone {
  margin: 20px 0px;
}
.page-wrapper #loginForm .login-form .footer .use-phone #useAPhoneNumber {
  margin: 0px 5px;
}
.page-wrapper #loginForm .login-form .footer .use-email {
  margin: 20px 0px;
}
.page-wrapper #loginForm .login-form .footer .use-email #useAEmail {
  margin: 0px 5px;
}
.page-wrapper .ellipse_left_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.page-wrapper .verify {
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .page-wrapper .verify {
    display: flex;
    justify-content: center;
  }
}
.page-wrapper .verify .main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 62px - 16px - 4px);
}
@media (min-width: 769px) {
  .page-wrapper .verify .main {
    width: 342px;
  }
}
.page-wrapper .verify .main .title {
  display: flex;
  margin-bottom: 16px;
}
.page-wrapper .verify .main .title .verify-your-account {
  font-size: 24px;
  font-weight: normal;
  margin: 0 10px;
}
.page-wrapper .verify .main .verify-your-account-tip {
  font-size: 14px;
}
.page-wrapper .verify .main #learnMore {
  font-size: 14px;
  margin-bottom: 24px;
}
.page-wrapper .verify .main #otpInput {
  margin-bottom: 20px;
}
.page-wrapper .verify .main .resendCode {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 16px;
}
.page-wrapper .passkey-management {
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .page-wrapper .passkey-management {
    display: flex;
    justify-content: center;
  }
}
.page-wrapper .passkey-management .profile {
  background: linear-gradient(180deg, #ebf1fd 100%, #e5ecf9 200%);
  box-shadow: none;
}
@media (min-width: 769px) {
  .page-wrapper .passkey-management .profile {
    width: 50vw;
  }
}
.page-wrapper .passkey-management .profile .title {
  text-align: center;
  margin-top: 20px;
}
.page-wrapper .passkey-management .profile #divMfaRegisteredAccounts {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 13.54%, #f8fafe 100%);
}
.page-wrapper .register {
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .page-wrapper .register {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.page-wrapper .register #status {
  text-align: center;
  margin-top: 20px;
}
.page-wrapper .register .register-device {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 13.54%, #f8fafe 100%);
}
@media (min-width: 769px) {
  .page-wrapper .register .register-device {
    width: 50vw;
  }
}
.page-wrapper .register .register-device .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-wrapper .delete {
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .page-wrapper .delete {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.page-wrapper .delete .title {
  text-align: center;
  margin-top: 20px;
}
.page-wrapper .delete .main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 50vh;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 13.54%, #f8fafe 100%);
  font-size: 14px;
}
@media (min-width: 769px) {
  .page-wrapper .delete .main {
    width: 50vw;
  }
}
.page-wrapper .delete .main .tip {
  margin-bottom: 20px;
}
.page-wrapper .delete .main .action {
  display: flex;
  justify-content: space-between;
  width: 220px;
}

