.flex {
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.h-screen {
  height: 100vh;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.max-w-lg {
  max-width: 32rem;
}

.bg-white {
  background-color: #ffffff;
}

.rounded-md {
  border-radius: 0.375rem;
}

.p-8 {
  padding: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-lg {
  font-size: 1.125rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.block {
  display: block;
}

.text-gray-700 {
  color: #4a5568;
}

.text-gray-500 {
  font-size: 0.8rem;
  color: #8d95a1;
}

.mt-1 {
  margin-top: 0.25rem;
}

.w-full {
  width: 100%;
  height: 30px;
  font-size: medium;
}

.border-transparent {
  border-color: transparent;
}

.focus:border-gray-500:focus {
  outline: 0;
  border-color: #cbd5e0;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
}

.focus:bg-white:focus {
  outline: 0;
  background-color: #ffffff;
}

.focus:ring-0:focus {
  outline: 0;
  box-shadow: none;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.pattern-error {
  background-color: #fed7d7;
  border-color: #e53e3e;
}

.maxLength-error {
  background-color: #fed7d7;
  border-color: #e53e3e;
}

.inputMode-error {
  background-color: #fed7d7;
  border-color: #e53e3e;
}

.bg-blue-500 {
  background-color: #3b82f6;
  border: none;
  height: 40px;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.text-white {
  color: #ffffff;
}

.font-bold {
  font-weight: 700;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}
img.displayed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
}
.red {
  color: #e53e3e;
}

#vanillatoasts-container {
  position: fixed;
  width: 320px;
  font-family: "Helvetica";
  pointer-events: none;
}
.toasts-top-right {
  top: 0;
  right: 0;
}
.toasts-top-left {
  left: 0;
  top: 0;
}
.toasts-bottom-left {
  left: 0;
  bottom: 0;
}
.toasts-bottom-right {
  bottom: 0;
  right: 0;
}
.toasts-top-center {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.toasts-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.vanillatoasts-toast {
  position: relative;
  padding: 20px 17px;
  margin: 20px;
  border-radius: 10px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  animation-duration: 0.3s;
  animation-name: VanillaToasts;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: all;
}

.vanillatoasts-fadeOut {
  animation-name: VanillaToastsFadeOut;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: forwards;
}

#vanillatoasts-container p,
#vanillatoasts-container h4 {
  margin: 3px 0 !important;
}

.vanillatoasts-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.vanillatoasts-text {
  font-size: 14px;
  color: #777;
}

.vanillatoasts-icon {
  position: absolute;
  top: 5px;
  left: -40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.vanillatoasts-toast a,
.vanillatoasts-toast a:hover {
  color: #549edb !important;
  text-decoration: none !important;
}

/** toast types */
.vanillatoasts-success {
  border-bottom: 2px solid #51c625;
}

.vanillatoasts-warning {
  border-bottom: 2px solid #db9215;
}

.vanillatoasts-error {
  border-bottom: 2px solid #db2b1d;
}

.vanillatoasts-info {
  border-bottom: 2px solid #27abdb;
}

@keyframes VanillaToasts {
  from {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes VanillaToastsFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
