﻿body {
  background: #333;
  margin:0px;
  font-family: 'Ubuntu', sans-serif;
}
h1, h2, h3, h4, h5, h6, a {
  margin:0; padding:0;
}
.logo
{
    width:150px;
    height:150px;
}
.login {
  margin:0 auto;
  max-width:500px;
}
.login-header {
  color:#fff;
  text-align:center;
  font-size:300%;
}
.login-header h1 {
   text-shadow: 0px 5px 15px #000;
   margin:0px;
   padding:0px;
}
.login-form {
  border:2px solid #999;
  background:#fff;
  border-radius:10px;
  box-shadow:0px 0px 10px #000;
}
.login-form h3 {
  text-align:left;
  margin-left:40px;
  color:#fff;
}
.login-form {
  box-sizing:border-box;
  padding-top:15px;
  margin:50px auto;
  text-align:center;
	overflow: hidden;
}
.login input[type="text"],
.login input[type="password"] {
  width: 100%;
	max-width:400px;
  height:30px;
  font-family: 'Ubuntu', sans-serif;
  margin:10px 0;
  border-radius:5px;
  border:2px solid #f2f2f2;
  background: linear-gradient(#1f2124, #27292c);
  outline:none;
  padding-left:10px;
  color: white;
}
.login-button {
  height:30px;
  width:100px;
 background: #0184ff;
  border:1px solid #f2f2f2;
  border-radius:20px;
  color: white;
  border: 1px solid rgba(0,0,0,0.4);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
   inset       0 10px 10px rgba(255,255,255,0.1);
  

  text-transform:uppercase;
  font-family: 'Ubuntu', sans-serif;
  cursor:pointer;
}
.sign-up{
  color:#f2f2f2;
  margin-left:-400px;
  cursor:pointer;
  text-decoration:underline;
}
.no-access {
  color:#E86850;
  margin:20px 0px 20px -300px;
  text-decoration:underline;
  cursor:pointer;
}
.try-again {
  color:#f2f2f2;
  text-decoration:underline;
  cursor:pointer;
}

/*Media Querie*/
@media only screen and (min-width : 150px) and (max-width : 530px){
  .login-form h3 {
    text-align:center;
    margin:0;
  }
  .sign-up, .no-access {
    margin:10px 0;
  }
  .login-button {
    margin-bottom:10px;
  }
  .login input[type="text"],
.login input[type="password"] {
  width: 100%;
	background: linear-gradient(#1f2124, #27292c);
	max-width:250px;
  font-family: 'Ubuntu', sans-serif;
  margin:10px 10px;
  border-radius:5px;
  border:2px solid #f2f2f2;
  outline:none;
  
}
}