/* Login Brand */

.login-brand .brand {
  height: 4.375rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 1.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05rem;
  z-index: 1;
  color: rgba(59,97,209,1);
}

@media (min-width: 768px) {
  .login-brand .brand .sidebar-brand-icon i {
    font-size: 2rem;
  }
}

/* Configs */

.btn-modules {
  margin: 0px 5px;
}

input[readonly] {
  background-color: #d3d3d3; /* Cinza claro */
}

.table-danger {
  background-color: rgba(255,99,71,0.2);
}


/* Configurações para Form de Envio de E-mail */
.c-alert {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -35%);
  color:rgb(0,0,0);
  font-weight: 900;
  padding: 1rem;
  margin: 1rem;
  background-color: rgb(255, 255, 255);
  font-weight: 700;
  opacity: 0;
  z-index: 10;
  border-radius: 5px;
  transition: all 0.25s ease;
  width: 300px;
  height: 190px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
  visibility: hidden;
  display: none;
}

.c-alert--show {
  opacity: 0.9;
  visibility: visible;
  display: block;
}

.c-alert--success {
  background-color: rgb(255, 255, 255);
}

.c-alert--error {
  background-color: red;
  color: white;
}

.icon-rotate {
  animation: is-rotating 1s infinite;
}
@keyframes is-rotating {
  to {
    transform: rotate(1turn);
  }
}

/* Footer */

.footer-shadow {
  box-shadow: 0 -0.475rem 2.75rem rgba(0,0,0,0.075);
}

/* Link Dev Rodapé */

.dev__link,
.dev__dir,
.dev__arco {
  color: #7d8288;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.dev__link .dev__arco:hover {
  color: #f9a13f;
}

.dev__link .dev__arco:hover .dev__logo svg {
  filter: brightness(1);
}

.dev__link .dev__logo svg {
  filter: brightness(1);
  width: 22px;
  height: 22px;
  margin-left: 5px;
}

.dev__link .dev__logo:hover svg {
  filter: brightness(1);
}

.dev__link .dev__logo:hover .dev__arco {
  color: #f9a13f;
}


/* FIm Link Dev */
