.pulse {
animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.messages {
    height: 100%;
    overflow-y: auto;
}

.password-mismatch {
    --tw-ring-color: red !important;
}

.password-default {
    --tw-ring-color: #9e9e9e !important;
}

.password-match {
    --tw-ring-color: #43a047 !important;
}

.custom-height {
    height: calc(100vh - 64px);
  }
  
  @media (min-width: 1024px) { /* lg */
    .custom-height {
      height: 100vh;
    }
  }