html{
  height:100%;
}
body {
  background: url('../img/portal-bg-2.jpg') no-repeat center center fixed;
  
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
  height:100%;
  margin:0;
  padding:0;
}
.logo{
  width: 100%;
  max-height: 200px;
}
.center{
  text-align: center;
}
.register-container {
  padding: 10px 40px 40px 40px;
  width: 325px;
  
  background-color: rgba(255,255,255,0.8);
  margin:auto;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position:absolute;
}
.register-container h1 {
  font-weight: 100;
  text-align: center;
  font-size: 2.3em;
}
.register-container h2 {
  color: #0072bb;
  font-weight: bold;
  text-align: center;
}
.register-container input[type=submit]{
  width: 100%;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}
.login_button {
  display: block;
  margin: auto;
}
.register-container input[type=text], input[type=password], input[type=date] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.register-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.register, .login_button {
  text-align: center;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
}
.register-submit, .login_button {
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #4d90fe;
}
.register-submit:hover {
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
}
.register-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}
.register-container a:hover {
  opacity: 1;
}
.register-footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.error-container{
  padding: 10px 40px 40px 40px;
  width: 325px;
  
  background-color: rgba(255,255,255,0.8);
  margin:auto;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position:absolute;
}
.error{
	color:red;
	font-weight: bold;
}
