[v-cloak] {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(203 213 225);
  padding: 1rem;
  font-size: 1rem;
  color: rgb(15 23 42);
}

.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgb(99 102 241);
}

.label {
  margin-bottom: .5rem;
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: rgb(51 65 85);
}

.toggle-card {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: .75rem;
  border-radius: 1.5rem;
  background: rgb(248 250 252);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgb(51 65 85);
}

body.diwan-alert-flash::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #fff;
  animation: diwan-alert-flash 1s steps(1, end) both;
}

@keyframes diwan-alert-flash {
  0%, 18%, 36% {
    background: #fff;
    opacity: 1;
  }

  9%, 27%, 45% {
    background: #000;
    opacity: 1;
  }

  54%, 100% {
    background: #fff;
    opacity: 0;
  }
}
