/* RESET */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* FUNDO CINZA */
body {
  margin: 0;
  background: rgb(51,51,51);
  min-height: 100vh;
}

/* TOPO */
.menu-topo {
  padding: 20px 30px;
}
/* BOTÃO HOME */
.topbar-home {
  
  margin-top: -33px;


  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 7px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
      font-family: 'DM Sans', sans-serif;
}

/* ÍCONE */
.topbar-home img {
    height: 22px;
}
/* CENTRALIZA LOGIN */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(112vh - 120px);
}

/* CAIXA DO LOGIN */
.login-box {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUTS */
.login-box input {
  height: 46px;
  border-radius: 25px;
  border: none;
  padding: 0 18px;
  font-size: 15px;
  background: #f7f5ef;
  outline: none;
  width: 415px;
}

.login-box input::placeholder {
  color: #777;
}

/* SENHA */
.senha-container {
  position: relative;
}

.show-password-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* BOTÃO */
.btn-login {
  height: 46px;
  border-radius: 25px;
  border: none;
  background: rgb(51, 153, 102);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s;
}

.btn-login:hover {
  background: #267349;
}

/* ERRO */
.erro {
  background: #ff0909;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
}

/* RODAPÉ */
.footer-text {
  position: fixed;
  bottom: 15px;
  right: 20px;
  font-size: 13px;
  color: #e0e0e0;
}
@font-face {
  font-family: 'UbuntuTitle';
  src: url('/fonts/UBUNTU-TITLE.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'UbuntuTitleFR';
  src: url('/fonts/UBUNTU-TITLE-FR-1.1.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Left area (logo / title) */
.left-area{display:flex; align-items:center; gap:12px; min-width:200px;}
.logo-topo .brand{
  font-weight:830;
  font-style:italic;
  font-size:28px;
  color:#ffffff;
  letter-spacing:1px;
}
.company-title .company-label{
  display:inline-block;
  font-weight:700;
  margin-left:6px;
  color:#0a1a2b;
}

.logo-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 22px;
  z-index: 999;
}

.logo-img {
  height: 61px;
  width: auto;
  display: block;
}

.emp-text {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
   font-family: 'UbuntuTitle', sans-serif;
  color: #2ecc71;
  font-size: 25px;

  text-transform: none !important; /* trava */


}
.brand-d {
   font-family: 'Inter', sans-serif;
  color: #2ecc71;
  font-size: 25px;
  font-weight: 600;
  text-transform: none !important; /* trava */


}

.brand-subtitle {
  color: #00bcd4; /* azul do "Syntech Sistemas" */
  font-size: 15px;
  font-weight: 600;
}

.show-password-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.show-password-btn svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

/* estado inicial */
.icon-eye-off {
  display: none;
}

/* quando ativo */
.show-password-btn.active .icon-eye {
  display: none;
}

.show-password-btn.active .icon-eye-off {
  display: block;
}

.show-password-btn:hover svg {
  fill: rgb(27, 27, 27);
}





.recaptcha-wrap {
    display: flex;
    justify-content: center;
 
}

.g-recaptcha {
    transform: scale(0.98);
    transform-origin: center;
}






/* ==========================================================
   ======== MEDIA QUERY - AJUSTES PARA CELULARES ============
   ========================================================== */


/* ==========================================================
   ======== MEDIA QUERY - MOBILE / TABLET ===================
   ========================================================== */
@media (max-width: 768px) {

  body {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
  }

.logo-img {
  height: 47px;
}
.topbar-home {
  margin-top: -26px;
    margin-right: -18px;}

  .menu-topo {
    padding: 15px 20px;
  }

  .login-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .login-box {
    width: 100%;
    max-width: 360px;
    gap: 12px;
  }

  .login-box input {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .btn-login {
    height: 44px;
    font-size: 14px;
  }

  .footer-text {
    position: static;
    text-align: center;
    font-size: 12px;
    padding-bottom: 15px;
  }
}

/* ==========================================================
   ======== MEDIA QUERY - LANDSCAPE BAIXA ALTURA ============
   ========================================================== */
@media (orientation: landscape) and (max-height: 430px) {

  html, body {
    height: 100%;
  }

  body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .menu-topo {
    padding: 10px 20px;
  }

  .login-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
  }

  .login-box {
    width: 100%;
    max-width: 380px;
    gap: 10px;
  }

  .login-box input {
    height: 42px;
    font-size: 14px;
  }

  .btn-login {
    height: 42px;
    font-size: 14px;
  }

  .footer-text {
    position: static;
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
  }
}

