/* ====== WRAPPER ====== */
.WrapAll{
  max-width: 380px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  font-family: Arial, Helvetica, sans-serif;
}

/* ====== HEADER ====== */
.LoginHeader{
  background: #6CBE1C;
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

.LoginTitle{
  font-size: 18px;
  font-weight: 700;
}

/* ====== CONTAINER ====== */
.LoginContainer{
  padding: 18px 20px 22px;
}

/* ====== LIST RESET ====== */
.LoginPanel{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== LABEL ====== */
.liTitle{
  margin-bottom: 4px;
}

.lblUserName,
.lblPassword,
.lblCapcha{
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* ====== INPUT ====== */
.liTextBox{
  margin-bottom: 14px;
}

.txtUserName,
.txtPassword,
.txtCapcha{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.txtUserName:focus,
.txtPassword:focus,
.txtCapcha:focus{
  border-color: #6CBE1C;
  outline: none;
  box-shadow: 0 0 0 2px rgba(11,94,215,.15);
}

/* ====== CAPTCHA ====== */
.liCapcha{
  margin-bottom: 14px;
}

.CapchaContainer{
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
  align-items: center;
}

.ImgCapcha{
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* ====== BUTTON ====== */
.liButtonLogin{
  margin-top: 10px;
}

.btnLogin{
  width: 100%;
  padding: 11px;
  background: #6CBE1C;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.btnLogin:hover{
  background: #094db3;
}

/* ====== LINKS ====== */
.liAdvance{
  margin-top: 12px;
  text-align: right;
}

.lnkForgetPassword{
  font-size: 13px;
  color: #6CBE1C;
  text-decoration: none;
}

.lnkForgetPassword:hover{
  text-decoration: underline;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 480px){
  .WrapAll{
    margin: 20px 12px;
  }

  .CapchaContainer{
    grid-template-columns: 1fr;
  }

  .ImgCapcha{
    margin: 6px 0;
  }
}
