/* Extra global styles (optional) */

/* Correção do login */
input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Correção do modal de novo chat */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}
