*{box-sizing:none !important}
.container{max-width:100dvw !important ;margin:0;padding:0}

/* Vídeo e overlay */
.background-video, .background-image {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: opacity 0.5s ease;
}
.background-video { filter: blur(15px); }
.video-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* Wrapper e card */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90dvh;
  width: 100%;
}
.login-card {
  width: 30%;
  min-width: 300px;
  padding: 35px;
  border-radius: 16px 183px 16px 97px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(34, 41, 47, 0.06);;
  margin-left: 2%;
}

/* Responsivo */
@media (max-width: 1024px) {
  .login-wrapper { justify-content: center; }
  .login-card { width: 90%; margin-left: 0; }
}

/* Inputs */
input {
  border-radius: 50px;
  border: 1px solid #e6e9ee;
  padding: 12px;
  width: 100%;
}

/* Password */
.password-wrapper { position: relative; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 45%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #808285;
}

/* Botão alternar fundo */
.toggle-bg {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.toggle-bg:focus { outline: 2px solid #fff; }

/* Mensagem de erro */
.error-box {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255,255,255,0.82), rgba(255,255,255,0.6));
  border: 1px solid rgba(156, 23, 23, 0.18);
  box-shadow: 0 10px 24px rgba(156, 23, 23, 0.12);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  color: #7d1b1b;
  margin-bottom:12px;
}
.error-title {
  font-weight: 600;
  color: #7b0f0f;
}
.error-message {
  font-size: 0.9rem;
  color: #7d2a2a;
}

.logo {
    width: 100%;
}

.brand-badge {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00427e;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(34, 41, 47, 0.06);
}

.btn-primary {
    background: #00427e;
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 55px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.texto-recorte {
  font-size: 1dvw*1dvh;
  color: white;
  mix-blend-mode: overlay; /* ou exclusion, multiply, overlay */
  padding:1dvh;
  text-align:right;
  margin-right: 5dvh;
}

.brand-text .title {
    color: #00427e;
    font-weight: 600;
    font-size: 1.05rem;
}

.brand-text .subtitle
{
    color: #808285;
    font-size: 0.85rem;
}

aside{
  display: none;
}
