
/* Card da empresa */
.empresa-card {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}

/* Card de login */
.card {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #fff;
  overflow: hidden;
}

/.card-body {
  padding: 24px;
}

/* Ícone */
.login-icon {
  font-size: 2.5rem;
  color: #0d6efd;
}

/* Inputs */
.input-group-text {
  background-color: #e9ecef;
  border: none;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 0;
}

/* Botão */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Link */
a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Empresa na navbar ===== */
.navbar-brand .empresa-nome {
  display: inline-block;
  max-width: 180px;            /* limite padrão para desktops */
  white-space: nowrap;         /* impede quebra de linha */
  overflow: hidden;            /* esconde o excesso */
  text-overflow: ellipsis;     /* adiciona "..." no final */
  vertical-align: middle;
  font-size: 1.05rem;
}

/* para telas menores */
@media (max-width: 992px) {
  .navbar-brand .empresa-nome {
    max-width: 120px;
    font-size: 0.95rem;
  }
}

/* telas muito pequenas */
@media (max-width: 576px) {
  .navbar-brand .empresa-nome {
    max-width: 80px;
    font-size: 0.9rem;
  }
}
