@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita‌​lic,400italic,500,500italic,700,700italic,900italic,900);
@import url(https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css);

html {
	min-height: 100vh;
}
body {
    margin  : unset !important;
    padding : 0px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 300;
	min-height: 100%;
	display:flex; 
    flex-direction:column; 
    color: #555;
}
#login {
    border: 1px solid #ccc;
    width: 500px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 3px 6px 8px #ddd;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

#login h1 {
    font-weight: bold;
    color: #111;
}

#login form {
    
    background: #fff;
    
    text-align: left;
    
}

#login form p {
    margin: 10px;
}



#username-field label, #password-field label {
    display: block;
    width: 150px;
    float: left;
    text-align: right;
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
    line-height: 30px;
}

#username-field input {
    width: 200px;
    font-size: 13px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    background-repeat: no-repeat;
    padding: 6px;
}

#password-field input {
    width: 200px;
    font-size: 13px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    background-repeat: no-repeat;
    padding: 6px;
}

#remember-field input {
    margin-left: 155px;
}

#remember-field {
    font-size: 12px;
    color: #666;
}

#signin-field input {
    margin-left: 155px;
    margin-top: 10px;
}

#login .error, #login .success  {
    color: #777;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    padding: 5px;
}

#login .error {
    background: #c00 !important;
}

#login .success {
    background: #008800 !important;
}

#login .info {
    font-size: 11px;
    font-style: italic;
}

.btn {
    background-color: #0063a6;
    border: 1px solid white;
    color: white;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
  }

  .btn:hover {
	background-color: white;
	border: 1px solid #0063a6;
	color: #0063a6;

  }