.user_identity-form__title,
.main-container__title {
  font-family: var(--gotham);
  color: var(--core-dark);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375rem;
  word-wrap: break-word;
}

.user_identity-form__input-group,
.form__input-group {
  font-weight: 400;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  font-family: "Arial", "sans-serif";
  font-size: 0.83rem;
  color: rgb(61, 69, 77) !important;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  min-height: calc(1em + 1.875rem);
}

.user_identity-form__label {
  font-family: var(--gotham);
}

.user_identity-form__input,
.form__input {
  line-height: 1em;
  display: block;
  width: 98%;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #3d454d;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.0625rem solid #8b9197;
  appearance: none;
  border-radius: 0.125rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  min-height: calc(1em + 1.875rem);
  margin: auto;
  border-radius: 0.75rem;
  margin-top: 0.5rem !important;
}

.user_identity-form__input:focus,
.user_identity-form__input:not(:placeholder-shown),
.form__input:focus,
.form__input:not(:placeholder-shown) {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  box-sizing: border-box;
  margin: 0;
  font-family: inherit;
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 400;
  background-clip: padding-box;
  border: 0.0625rem solid #8b9197;
  appearance: none;
  border-radius: 0.125rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #fff;
  outline: 0;
  line-height: 1em;
  padding: 0.9375rem 0.625rem;
  border: 0.0625rem solid rgb(80, 93, 104) !important;
  box-shadow: 0 0 0.1875rem rgb(80, 93, 104) !important;
  -moz-box-shadow: 0 0 0.1875rem rgb(80, 93, 104) !important;
  -webkit-box-shadow: 0 0 0.1875rem rgb(80, 93, 104) !important;
  height: calc(1em + 2.125rem);
  border-radius: 0.75rem;
}

.main-container__description {
  font-family: var(--gotham);
  color: var(--core-dark);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
}

.user_identity-form__submit-wrapper,
.form__button-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem !important;
}

.user_identity-form__submit-btn {
  word-wrap: break-word;
  box-sizing: border-box;
  margin: 0;
  text-transform: none;
  appearance: button;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: var(--coreneutral-101);
  text-align: center;
  text-decoration: none;
  user-select: none;
  background-color: var(--core-dark);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 0.625rem !important;
  cursor: pointer;
  height: 2.5rem;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: unset;
  font-family: var(--gotham);
}

.user_identity-form__checkbox {
  display: none;
}

.user_identity-form__agreement {
  display: inline-flex;
  cursor: pointer;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 0.5rem;
}

.user_identity-form__checkmark {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 50%;
  border: 0.125rem solid var(--coreneutral-108);
  display: inline-block;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.user_identity-form__checkbox:checked + .user_identity-form__checkmark {
  background-color: transparent;
  display: grid;
  place-items: center;
}

.user_identity-form__checkbox:checked + .user_identity-form__checkmark::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--core-dark);
  border-radius: 50%;
}

.user_identity-form__agreement-text {
  font-size: 0.875rem;
  font-family: var(--gotham);
  color: var(--core-dark);
}

.form__autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 0.0625rem solid #ccc;
  background-color: #fff;
  z-index: 1000;
  display: none;
}

.form__autocomplete-results div {
  padding: 0.625rem;
  cursor: pointer;
  border-bottom: 0.0625rem solid #eee;
}

.form__autocomplete-results div:last-child {
  border-bottom: none;
}

.form__autocomplete-results div:hover {
  background-color: #e9e9e9;
}

.form__button--disabled {
  word-wrap: break-word;
  box-sizing: border-box;
  margin: 0;
  text-transform: none;
  appearance: button;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: var(--coreneutral-101);
  text-align: center;
  text-decoration: none;
  user-select: none;
  background-color: var(--coreneutral-108);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 0.625rem !important;
  cursor: pointer;
  height: 2.5rem;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: unset;
  font-family: var(--gotham);
  user-select: none;
  cursor: not-allowed !important;
}

#form__input--invisible-overlay {
  position: absolute;
  background: transparent;
  color: var(--core-dark);
  height: 3.0625rem;
  width: 98%;
  top: 1.375rem;
  left: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1em;
  display: flex;
  align-items: center;
  padding: 0 0.5625rem;
}

.form__link {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

.form__link--last {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.auth-options {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  z-index: 5;
}

.auth-options > #content-card {
  width: 28.25rem;
}

/* QR code image */
.auth-options img.qr-code {
  width: 12.5rem;
  height: 12.5rem;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}

/* ALL PHONE STYLING */

.phone {
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  z-index: 5;
}

.device {
  transform: scale(0.75) !important;
  z-index: 6;
}

.device-screen {
  background: white !important;
  user-select: none;
}

.device-screen .top-bar {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 30px 10px 40px;
}

.device-screen .top-bar span {
  font-size: 1.1em;
  margin-top: 5px;
}

.device-screen .top-bar img {
  height: 25px;
}

.device-screen .top-bar .right-icons {
  display: flex;
  gap: 5px;
  font-size: .9em;
  padding-right: 5px;
}

.device-screen .email-container {
  padding: 20px;
}

.device-screen .email-container .inbox-top-icons {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
}

.device-screen .email-container .inbox-top-icons .right-icons {
  display: flex;
  gap: 20px;
}

.device-screen .email-container .inbox-top-icons svg {
  height: 25px;
  width: 25px;
}

.device-screen .email-container .subject-line {
  display: flex !important;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}

.device-screen .email-container .subject-line span {
   font-size: 1.4em;
   font-weight: 100;
}

.device-screen .email-container .subject-subline {
  margin-top: 10px;
  display: flex !important;
  justify-content: space-between;
}

.device-screen .email-container .subject-subline .inbox-badge {
  padding: 5px;
  border-radius: 2px;
  background-color: #EEEEEE;
  font-size: .8em;
}

.device-screen .email-container .subject-subline svg {
  height: 24px;
  width: 24px;
}

.device-screen .email-container .sender-info {
   display: flex !important;
   gap: 20px;
   margin-top: 40px;
}

.device-screen .email-container .sender-info .brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background-color: var(--coreneutral-105);
  border-radius: 50%;
  overflow: hidden;
}

.device-screen .email-container .sender-info .text-info {
  flex-grow: 1;
}

.device-screen .email-container .sender-info .text-info span {
  display: inline-block;
  font-weight: 300;
}

.device-screen .email-container .sender-info .text-info .time {
  opacity: .7;
  margin-left: 10px;
}

.device-screen .email-container .sender-info .sender-buttons svg {
  display: inline-block;
  margin-left: 10px;
}

.device-screen .email-container .email-body {
  margin-top: 30px;
  font-size: 1.1em;
  font-weight: 200;
}

.device-screen .email-container .email-body span {
  display: inline-block;
}

.device-screen .email-container .bottom-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px 50px 20px;
  width: 100%;
}

.device-screen .email-container .bottom-contents .bottom-buttons {
  display: flex !important;
  gap: 10px;
}
.device-screen .email-container .bottom-contents .bottom-buttons .button {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  border: solid 1px #D8D8D8;
  border-radius: 4px;
  padding: 10px;
  font-size: .9em;
}

.device-screen .email-container .bottom-contents .bottom-add-ons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  border-top: solid 1px #eeeeee;
  padding-top: 10px;
  filter: grayscale(100);
  color: #585858;
}

.device-screen .email-container .bottom-contents .bottom-add-ons img {
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

/* END PHONE STYLES */

.p1-demo__form--logo {
  margin: 1.5625rem auto;
  width: 100px;
  height: 100px;
}

.p1-demo__form--title {
  font-size: 1.4375rem;
  font-weight: 400;
  padding-bottom: 0.25rem;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  max-height: 12.5rem;
}

.p1-demo__form--submitBtn {
  border: none;
  outline: none;
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  padding: 0.75em;
  margin-top: 1.5em;
  cursor: pointer;
  border-radius: 0.25rem;
  text-align: center;
  box-sizing: border-box;
  background: #277ba5;
  box-shadow: 0 0 0 0 rgba(88, 120, 243, 0.4);
  animation: pulse 2s infinite;
}

.p1-demo__form--submitBtn:hover {
  background-color: #29618c;
}

.p1-demo__form--submitBtn:disabled {
  cursor: not-allowed;
}

.p1-demo__form--submitBtn:disabled:hover {
  background: #277ba5;
}

.p1-demo__form-input--floating-label input, .p1-demo__form-input--floating-label select {
  padding-top: 25px;
}

.p1-demo__form-input--label--inside {
  position: absolute;
  top: 0.9375rem;
  left: 1.875rem;
  font-size: .8rem;
  opacity: .6;
}

.p1-demo__form-input--text {
  padding: 0.9375rem 0.625rem;
  line-height: 1em;
  width: 100%;
  font-size: .9375rem;
  font-weight: 400;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #8b9197;
  appearance: none;
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.p1-demo__image--qr-code {
  border: solid 0.1875rem var(--core-red);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #277ba5;
  }
  70% {
    box-shadow: 0 0 0 0.625rem rgba(39, 123, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 3.125rem rgba(39, 123, 165, 0);
  }
}
