input[type="text"], input[type="password"] {
  margin: 0;
  height: 25px;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  -ms-border-radius: none;
  -o-border-radius: none;
  border-radius: none;
}

.headDiv{
    height:80px;
}

input[type="text"]:focus {
  outline: none;
}

/* lists */
ul {
  text-align: center;
}
ul.input-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.input-list li {
  padding: 0 0px;
}

@media all and (max-width: 940px) {
  ul.input-list {
    margin: 0;
  }
  ul.input-list li {
    padding: 0;
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}

.style-1 input[type="text"], input[type="password"] {
  padding-left: 10px;
  border: solid 1px gainsboro;
  -webkit-transition: box-shadow 0.3s, border 0.3s;
  -moz-transition: box-shadow 0.3s, border 0.3s;
  -o-transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
}
.style-1 input[type="text"]:focus, .style-1 input[type="password"]:focus, .style-1 input[type="text"].focus, .style-1 input[type="password"].focus {
  border: solid 1px #707070;
  -webkit-box-shadow: 0 0 5px 1px #969696;
  -moz-box-shadow: 0 0 5px 1px #969696;
  box-shadow: 0 0 5px 1px #969696;
}

.center {
  text-align: center;
}
.center > div, .center > table /* insert any other block-level elements here */ {
  margin-left: auto;
  margin-right: auto;
}

.loginTD {
  width: 100px;
  align: right;
  font-size: 14px;
  vertical-align: middle;
}