 * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
  margin: 0;
  padding: 0;
  color: #fff;
  background: #1b1b1b;
  font-size: 14px;
  text-shadow: #050505 0 -1px 0;
  font-weight: bold;
  -webkit-user-select: none; /* Chrome/Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none;
}
#bg-top {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: solid 3px #777973;
  height: 250px;
  width: 100%;
  background: #fff;
  z-index: 1;
}
#login-wrapper {
  margin: 0 0 0 -160px;
  width: 320px;
  text-align: center;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 50%;
}
#login-top {
  height: 120px;
  padding-top: 140px;
  text-align: center;
  font: 72px "Courier New", Courier, monospace;
  color: #000;
}
#errorMessage {
  color: red;
}
label {
  width: 70px;
  float: left;
  padding: 8px;
  line-height: 14px;
  margin-top: -4px;
}
input.text-input, select.text-input {
  width: 200px;
  float: right;
  /*-moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;*/
  background: #fff;
  border: solid 1px #ccc;
  color: #555;
  padding: 8px;
  font-size: 14px;
}
select.text-input {
  width: 217px;
}
input.button {
  float: right;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  background-color: #459300;
  border-radius: 2px 2px 2px 2px;
  border: solid 1px transparent;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px;
}

 /*
 * CSS TOGGLE SWITCHES
 * Unlicense
 *
 * Ionuț Colceriu - ghinda.net
 * https://github.com/ghinda/css-toggle-switch
 *
 */
 
.switch-light span span { display: none; }
.switch-light {
  display: block;
  height: 30px;
  /* Outline the toggles when the inputs are focused */
  position: relative;
  overflow: visible;
  padding: 0;
  margin-left: 100px;
  /* Position the label over all the elements, except the slide-button (<a>)
   * Clicking anywhere on the label will change the switch-state 
   * Don't hide the input from screen-readers and keyboard access */
}
.switch-light * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.switch-light a {
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.switch-light label, .switch-light > span {
  line-height: 30px;
  vertical-align: middle;
  cursor: pointer;
}
.switch-light input {
  position: absolute;
  opacity: 0;
  z-index: 5;
}
.switch-light input:checked ~ a { right: 0%; }
.switch-light > span {
  position: absolute;
  left: -100px;
  width: 100%;
  margin: 0;
  padding-right: 100px;
  text-align: left;
}
.switch-light > span span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 50%;
  margin-left: 100px;
  text-align: center;
}
.switch-light > span span:last-child { left: 50%; }
.switch-light a {
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 4;
  display: block;
  width: 50%;
  height: 100%;
  padding: 0;
}
  
.switch-candy {
  background-color: #2d3035;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px #191b1e;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.2);
}
.switch-candy a {
  border: 1px solid #333333;
  background-color: #70c66b;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to  bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}
.switch-candy > span { color: #333333; text-shadow: none; }
.switch-candy span { color: white; }
.large-3 { position: relative; width: 220px; }
.large-12 { position: relative; width: 100%; }
.example { padding: 17px 2px; border-radius: 2px; }