/* Fundo com imagem + blur */
.bg-wrap {
  position: fixed;
  inset: 0;
  background: url("/static/img/bg-nelore.jpg") center/cover no-repeat;
  transform: scale(1.05);
  filter: blur(10px);
  z-index: -2;
}

/* Overlay escuro para contraste */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.login-card {
  border-radius: 16px;
  overflow: hidden;
  max-width: 720px;
}

/* Coluna esquerda sem padding (bootstrap col-*) */
.col-md-4.login-left,
.col-md-5.login-left {
  padding: 0 !important;
}

/* Painel esquerdo */
.login-left {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.login-left-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.login-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.login-left-title {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.login-left-overlay {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.overlay-line {
  position: absolute;
  bottom: 125px;
  left: 3px;
  font-size: 0.8rem;
  text-align: left;
}

.overlay-brand {
  position: absolute;
  bottom: 45px;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.overlay-brand-2 {
  position: absolute;
  bottom: 35px;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
}

.overlay-version {
  position: absolute;
  bottom: 3px;
  right: 3px;
  font-size: 0.75rem;
  text-align: right;
  width: 100%;
}

/* Painel direito */
.login-right {
  background-color: #e1e3e5;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* Selecionar Tenant */
.tenant-card{
  border-radius: 16px;
  overflow: hidden;
  max-width: 520px;
}

.tenant-card .card-body{
  background: rgba(225, 227, 229, 0.92);
  backdrop-filter: blur(6px);
}

.tenant-title{
  font-weight: 800;
  letter-spacing: .2px;
}

.tenant-subtitle{
  color: rgba(17, 24, 39, .65);
}

.login-link {
    font-size: 0.9rem;
    color: rgba(17, 24, 39, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: var(--sg-primary);
    text-decoration: underline;
}
