html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f4f5f8 0%, #e8eaed 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD CENTRALIZADO */
#auth_login_zone {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(50, 54, 58, 0.09);
  padding: 2.1rem 2rem 1.7rem 2rem;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* FORM */
#auth_login_zone form,
#auth_login_zone fieldset,
#auth_login_zone .control-group,
#auth_login_zone .controls,
#auth_login_zone .form-actions {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

#auth_login_zone fieldset {
  border: none !important;
  padding: 0;
  margin: 0;
}


/* GRUPO DE INPUT */
#auth_login_zone .control-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

/* LABELS */
#auth_login_zone .control-label {
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.20rem;
  letter-spacing: .01em;
  text-align: left;
  display: block;
}

/* CAMPO OBRIGATÓRIO */
#auth_login_zone .jforms-required-star {
  color: #f47521;
  margin-left: 2px;
  font-size: 1.09em;
}

/* CAMPOS DE TEXTO E SENHA */
#auth_login_zone .controls {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#auth_login_zone input[type="text"],
#auth_login_zone input[type="password"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 1.05rem 1.1rem;         /* <<< aumenta altura */
  font-size: 1.14rem;              /* <<< aumenta fonte */
  border: 1.7px solid #d2d6db;
  border-radius: 9px;
  background: #fcfcfc;
  margin-bottom: 0.18rem;
  transition: border .18s, box-shadow .18s, background .18s;
  box-sizing: border-box;
  outline: none;
  color: #222;
  font-weight: 500;
}


#auth_login_zone input[type="text"]:focus,
#auth_login_zone input[type="password"]:focus {
  border: 2px solid #f47521;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(244,117,33,0.09);
}

/* CHECKBOX ALINHADO */
#auth_login_zone .checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #343434;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}

#auth_login_zone input[type="checkbox"] {
  accent-color: #f47521;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  border-radius: 3px;
  border: 1.4px solid #b5b5b5;
  box-shadow: 0 1px 3px #efefef50;
}

/* BOTÃO ENTRAR */
#auth_login_zone .form-actions {
  width: 100%;
  margin-top: 1.3rem;
  display: flex;
  justify-content: stretch;
}

#auth_login_zone input[type="submit"].btn {
  width: 100%;
  padding: 0.92rem 0;
  background: linear-gradient(90deg, #f47521 0%, #fd7c1e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .13s, box-shadow .13s, transform .09s;
  box-shadow: 0 2px 12px 0 rgba(244,117,33,0.09);
}

#auth_login_zone input[type="submit"].btn:hover {
  background: linear-gradient(90deg, #ff821f 0%, #ff9e3e 100%);
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 6px 26px 0 rgba(244,117,33,0.13);
}

/* MENSAGENS E LINKS */
#auth_login_zone p {
  color: #f47521;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: 600;
}

#auth_login_zone .loginbox-links {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.01rem;
}
#auth_login_zone .loginbox-links a {
  color: #f47521;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.4em;
  transition: color .13s;
}
#auth_login_zone .loginbox-links a:hover {
  color: #c45c12;
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 500px) {
  #auth_login_zone {
    padding: 1rem 0.3rem 1rem 0.3rem;
    max-width: 99vw;
  }
}
