html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

 

/* Aplica as animações ao Toastr */
#toast-container > .toast {
    background-image: none !important;
    opacity: 1 !important; /* Força a opacidade */
    animation: fadeIn 0.5s ease-in-out;
}

    #toast-container > .toast.fadeOut {
        animation: fadeOut 0.5s ease-in-out;
    }

/* Cores personalizadas para os toasts */
#toast-container > .toast-success {
    background-color: #28a745 !important; /* Verde para sucesso */
}

#toast-container > .toast-error {
    background-color: #dc3545 !important; /* Vermelho para erro */
}

#toast-container > .toast-warning {
    background-color: #ffc107 !important; /* Amarelo para aviso */
}

#toast-container > .toast-info {
    background-color: #17a2b8 !important; /* Azul para informação */
}

/* Ícones da FontAwesome */
#toast-container > .toast:before {
    position: fixed;
    font-family: FontAwesome;
    font-size: 24px;
    line-height: 18px;
    float: left;
    color: #FFF;
    padding-right: 0.5em;
    margin: auto 0.5em auto -1.5em;
}

#toast-container > .toast-warning:before {
    content: "\f003";
}

#toast-container > .toast-error:before {
    content: "\f001";
}

#toast-container > .toast-info:before {
    content: "\f005";
}

#toast-container > .toast-success:before {
    content: "\f002";
}

