#creatingAccountModal {
  font-family: 'Poppins', sans-serif;
}

#email-exists-modal{
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}
#creatingAccountModal.show {
  pointer-events: auto;
}

#creatingAccountModal .box {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.text-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(26, 54, 93);
  margin-bottom: 1rem;
  text-align: center;
}
#creatingAccountModal h2 {
  color: #1d4ed8;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#creatingAccountModal p {
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
#creatingAccountModal .small {
  font-size: 0.9rem;
  color: #6b7280;
}

#creatingAccountModal .loader {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border: 5px solid #e5e7eb;
  border-top-color: #1d4ed8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


#floatingButton {
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: none;
  width: 100%;
  cursor: pointer;
}

.floatingButton {
  --tw-text-opacity: 1;
  font-family: 'Encode Sans Expanded', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: rgb(247 158 27 / var(--tw-bg-opacity));
  position: relative;
  z-index: auto;
  display: block;
  width: 100%;
  padding: 5px;
  margin: 0 auto;
  transition: 0.3s;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
}

.floatingButton:hover {
  --tw-brightness: brightness(1.05);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
