@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(roboto-regular.woff2) format('woff2');
} 
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(roboto-light.woff2) format('woff2');
}

html {
  background: url(background.jpg) no-repeat center center fixed;
  background-color: #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%
}

body {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding-top: 58px;
  -webkit-user-select: none;       
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  background: none;
}

h1, h2, p, a, spawn {
  -webkit-user-select: text;       
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

h1 {
  font-size: 40px;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  margin-bottom: 16px;
}
h2 {
  font-size: 1rem;
  padding-bottom: 15px;
}
h1, h2 {
  font-weight: 400;
  text-align: center;
}
input, textarea, keygen, select, button {
  font-weight: 300;
}
a {
  color: #b496f0;
}
a:hover {
  color: #b47fec;
}

p.message {
  font-size: 1rem;
  font-weight: bolder;
  text-align: center;
  color: #ff6370;
  padding: 0 4px 64px 4px;
}
.error {
  color: #ff6370;
}
.btn {
  font-weight: bolder;
}
.btn-primary {
  background-color: #6cdd83;
  border-color: #6cdd83;
  color: #000;
}
.btn-primary:hover {
  background-color: #28c86e;
  border-color: #28c86e;
  color: #000;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  background-color: #28c86e;
  border-color: #28c86e;
  color: #000;
}
.btn-primary.focus, .btn-primary:focus {
  background-color: #28c86e;
  border-color: #28c86e;
  color: #000;
  box-shadow: none;
}
.btn-group-lg > .btn, .btn-lg {
  font-size: 1rem;
  padding: 10px;
}

div.container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
form.login {
  width: 100%;
  max-width: 400px;
  padding: 0px 16px 32px 16px;
  margin: auto;

}
form.login .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
form.login .form-control:focus {
  z-index: 2;
}
form.login button {
}
form.login input[type="username"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
form.login input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-control {
  border-radius: 8px;
  background-color: rgba(0,0,0,0.5);
  border-color: rgba(0,0,0,0.6);
  color: #fff;
}
.form-control:focus {
  background-color: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.9);
  outline: 0;
  box-shadow: none;
  color: #fff;
}
:not(output):-moz-ui-invalid {
  box-shadow: none;
}
.form-control::-webkit-input-placeholder { color: rgba(255,255,255,0.5); }  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: #bbbbbb; }  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: #bbbbbb; }  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: #bbbbbb; }  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: #bbbbbb; }  /* Microsoft Edge */

::selection {
  background: #dedede;
}
::-moz-selection {
  background: #dedede;
}

a::selection {
  color: #000;
}
a::-moz-selection {
  color: #000;
}

