/*

 * Copyright (c) 2012-2013 Thibaut Courouble

 * http://www.cssflow.com

 *

 * Licensed under the MIT License:

 * http://www.opensource.org/licenses/mit-license.php

 */



#login .container {

  margin: 10px auto;

  width: 640px;

}



#login .login {

  position: relative;

  margin: 0 auto;

  padding: 20px 20px 20px;

  width: 310px;

  background: white;

  border-radius: 3px;

  -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);

  box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);

}

#login .login:before {

  content: '';

  position: absolute;

  top: -8px;

  right: -8px;

  bottom: -8px;

  left: -8px;

  z-index: -1;

  background: rgba(0, 0, 0, 0.08);

  border-radius: 4px;

}

.login h1 {

  margin: -20px -20px 21px;

  line-height: 40px;

  font-size: 20px;

  font-weight: 400;

  color: #ffffff;

  text-align: center;

  background: #13a5e2;

  border-bottom: 1px solid #cfcfcf;

  border-radius: 3px 3px 0 0;

  background-image: -webkit-linear-gradient(top, whiteffd, #eef2f5);

  background-image: -moz-linear-gradient(top, whiteffd, #eef2f5);

  background-image: -o-linear-gradient(top, whiteffd, #eef2f5);

  background-image: linear-gradient(to bottom, whiteffd, #eef2f5);

}

#login .login p {

  margin: 20px 0 0;

}

#login .login p:first-child {

  margin-top: 0;

}

#login .login input[type=text], .login input[type=password] {

  width: 278px;

}

#login .login p.remember_me {

  float: left;

  line-height: 31px;

}

#login .login p.remember_me label {

  font-size: 12px;

  color: #777;

  cursor: pointer;

}

#login .login p.remember_me input {

  position: relative;

  bottom: 1px;

  margin-right: 4px;

  vertical-align: middle;

}

#login .login p.submit {

  text-align: right;

}



#login .login-help {

  margin: 20px 0;

  font-size: 11px;

  color: black;

  text-align: center;



}

#login .login-help a {

  color: #000000;

  text-decoration: none;

}

#login .login-help a:hover {

  text-decoration: underline;

}



:-moz-placeholder {

  color: #c9c9c9 !important;

  font-size: 13px;

}



::-webkit-input-placeholder {

  color: #ccc;

  font-size: 13px;

}



#login input {

  font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;

  font-size: 14px;

}



#login input[type=text], input[type=password] {

  margin: 5px;

  padding: 0 10px;

  width: 200px;

  height: 34px;

  color: #404040;

  background: white;

  border: 1px solid;

  border-color: #c4c4c4 #d1d1d1 #d4d4d4;

  border-radius: 3px;

  outline: 0px solid #eff4f7;

  -moz-outline-radius: 3px;

  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);

  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);

}

#login input[type=text]:focus, input[type=password]:focus {

  border-color: #e1e1e1;

  outline-color: #dceefc;

  outline-offset: 0;

}



.lt-ie9 input[type=text], .lt-ie9 input[type=password] {

  line-height: 34px;

}

