.login-card {
  padding: 40px;
  width: 374px;
  background-color: #F7F7F7;
  margin: 0 auto 10px;
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.login-card h3 {
  font-weight: 100;
  text-align: center;  
  color: #70B200;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;  
}

.login-card input[type=submit] {
  height: 36px;
  padding: 0 15px;
  background-image: -webkit-linear-gradient(top, #FFB973 0%, #FF8000 100%);
  background-image: -o-linear-gradient(top, #FFB973 0%, #FF8000 100%);
  background-image: linear-gradient(to bottom, #FFB973 0%, #FF8000 100%);
  background-repeat: repeat-x;
  display: block;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  color: #FFF;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
  font-family: "Arial";
}

.login-card-texto {     
  margin-bottom: 20px;
}

.login-submit {  
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #4d90fe;
  
}

.login-submit:hover {
  
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
  
}

.login-card a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}

.login-card a:hover {
  opacity: 1;
}

.login-help {
  width: 100%;
  text-align: center;
  font-size: 12px;
}