:root {
  --bg: #0f1115;
  --text: #e6e6e6;
  --muted: #9aa0a6;
  --accent: #e2b714;
  --placeholder: #888;
  --accenthover: #FAAB00;
  --card-bg: rgba(255, 255, 255, .06);
  --card-bd: rgba(255, 255, 255, .18);
}

  /* Altera a cor do placeholder em todos os navegadores modernos */
  input::placeholder {color: var(--placeholder)!important; opacity: 1; }
  /* Compatibilidade com o WebKit (Chrome, Safari) */
  input::-webkit-input-placeholder {color:  var(--placeholder)!important;}
  /* Compatibilidade com o Mozilla Firefox */
  input:-moz-placeholder {color: var(--placeholder)!important; opacity: 1; }
  input::-moz-placeholder {color:  var(--placeholder)!important; opacity: 1;}
  /* Compatibilidade com o Internet Explorer */
  input::-ms-input-placeholder {color:  var(--placeholder)!important;}

body {
  background: radial-gradient(1200px 800px at 10% 10%, #161a22 0%, #0f1115 60%) no-repeat fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  height: 100%;  /* Garante que o body ocupe 100% da altura da tela */
  margin: 0;
  display: flex;
  flex-direction: column;
}

.login-page-wrap{
  flex: 1;  /* A main-content ocupa o espaço restante */
  overflow: auto;  /* Permite rolagem caso o conteúdo ultrapasse o espaço disponível */
}
.alert_login{
  padding: 1px 20px!important;
  margin: 4px 0!important;
}
.login-hero {
  position: relative;
  padding: 48px 16px 24px;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ffffff1a;
}

.login-hero h1 {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: .5px;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 36px);
}

.login-hero p {
  color: #8b8c91;
  margin: 1px auto 0;
  max-width: 680px;
  font-family: Cinzel, serif;
  font-size: .9rem;
}

.login-card {
  backdrop-filter: blur(10px);
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
  padding: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.brand .logo {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #ffd95e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  font-weight: 800;
  font-size: 18px;
}

.brand-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-texts .PanelControl {
  font-family: Cinzel, serif;
  font-weight: 600;
  letter-spacing: .4px;
  font-size: 20px;
}

.brand-texts .PanelControlPlanejamentos {
  font-family: Cinzel, serif;
  color: #8b8c91;
  letter-spacing: .4px;
  font-size: 12px;
  text-align: center;
}

.form-label {
  font-family: Cinzel, serif;
  color: #8b8c91;
}

.form-control,
.form-check-input,
.form-select {
  background-color: rgba(255, 255, 255, .06) !important;
  border-color: rgba(255, 255, 255, .18) !important;
  color: var(--text) !important;
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  box-shadow: 0 0 0 .25rem rgba(226, 183, 20, .2);
  border-color: var(--accent) !important;
}

.input-group-text {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .18);
  color: var(--muted);
}

.btn-accent {
  background: var(--accent);
  color: #111;
  border: none;
  font-weight: 700;
  letter-spacing: .3px;
}

.btn-accent:hover {
  background: var(--accenthover);
  color: #111;
  border: none;
  font-weight: 700;
  letter-spacing: .3px;
}

.links a {
  color: #c9cbd1;
  text-decoration: none
}

.links a:hover {
  color: #fff;
  text-decoration: underline
}

.divider {
  height: 1px;
  width: 100%;
  background: #ffffff1a
}
@keyframes rotate-gradient 
{
  0% {
      background-position: 0% 50%
  }
  50% {
      background-position: 100% 50%
  }
  100% {
      background-position: 0% 50%
  }
}

.footer {
  background-size: 200% 200%!important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: rotate-gradient 4s ease infinite;
  padding: 24px 0;
  border-top:dashed 0.1rem #5f5f5f!important;
  margin-top: 40px;
  background: linear-gradient(-45deg, #1b1a1a, #302f2c, #1b1a1a, #5f4700, #1b1a1a, #312500);
  max-height: 90px;
}
.footer .container small {
  color: #ffd200 !important; /* Aplica a cor de texto aqui, com maior especificidade */
}
/* === CTA de Download === */
.download-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px 24px;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}

.dl-btn {
  --ring: rgba(226, 183, 20, .25);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, border-color .2s ease;
  border: 1px solid var(--card-bd);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.dl-btn i {
  font-size: 1.1rem;
  opacity: .95;
}

.dl-btn small {
  display: block;
  font-weight: 600;
  color: #bfc2c7;
  line-height: 1;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45), 0 0 0 6px var(--ring);
  border-color: rgba(226, 183, 20, .5);
}

.dl-primary {
  background: linear-gradient(135deg, #ffd95e 0%, var(--accent) 60%, #d6a90a 100%);
  color: #161616;
  border-color: rgba(255, 255, 255, .25);
}

.dl-primary.dl-btn small {
  display: block;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
}

.dl-primary:hover {
  box-shadow: 0 12px 28px rgba(226, 183, 20, .35), 0 0 0 6px var(--ring);
}

.dl-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
  color: var(--text);
}

.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .18);
}

.dl-col {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: 2px;
}

.dl-title {
  font-family: Cinzel, serif;
  font-weight: 800;
  font-size: .98rem;
  line-height: 1.05;
}

  /* footer */

