html, body {
  width: 100%;
  min-height: 100%;
  background: black;
  padding: 0;
  margin: 0;
}

a, a:link, a:active, a:visited, a:hover, a:focus {
  text-decoration: none;
  color: rgb(5, 180, 255);
}

a:hover {
  color: orange;
}

.spinner {
  opacity: 0;
}

#container {
  width: 100%;
}

#container .info {
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.75;
  color: #fefefe;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 110px 20px 20px 20px;
  margin-top: 12.5%;
  background-image: url(../svg/warn.svg);
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: 50% 0;
}

#container .info.login {
  background-image: url(../svg/key.svg);
}

#container .info.hero {
  background-image: url(../svg/diamond.svg);
}

#container .info .help {
  color: #aaa;
  font-size: 0.85em;
}

#container .public-loader {
  position: relative;
  height: 20px;
}

#container .public-loader > .spinner {
  margin-top: 20px;
}

#container form.private .spacer {
  height: 80px;
}

#container form input[type="text"], #container form input[type="password"] {
  width: 200px;
  border: 1px solid #fefefe;
  background: none;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 1.75;
  color: #fefefe;
  padding: 8px 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}

#container form.login input[type="text"], #container form.private input[type="text"] {
  margin-bottom: 10px;
}

#container form.login input[type="password"], #container form.private input[type="password"] {
  margin-bottom: 20px;
}

#container form input[type="text"]:focus, #container form input[type="password"]:focus, #container form input[type="submit"]:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#container form input[type="submit"] {
  border: 1px solid rgb(5, 180, 255);
  background: none;
  border-radius: 4px;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 1.75;
  color: rgb(5, 180, 255);
  padding: 2px 12px;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

#container form input[type="submit"]:hover {
  border-color: orange;
  color: orange;
}

#container form .status {
  position: relative;
  height: 80px;
}

#container form .status .error {
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25em;
  color: rgb(255, 76, 88);
  padding: 22px 0 0 0;
}

#container form.login .status .error, #container form.private .status .error {
  font-size: 0.9em;
}

#container form .status .success {
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25em;
  color: #fefefe;
  padding: 22px 0 0 0;
}

#container form .status .help {
  color: #aaa;
  font-size: 0.85em;
}

#container header {
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.75;
  color: #fefefe;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 20px 20px 20px 20px;
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: 50% 0;
}

#container header span {
  margin-left: 12px;
}

#container a.logout, #container a.login {
  float: right;
  margin-right: 12px;
}

#container .stream-set {
  padding: 20px;
  text-align: center;
}

#container form.streams input[type="text"], #container form.addresses input[type="text"] {
  width: 322px;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.75;
  padding: 8px 16px;
  margin: 20px 10px 0 10px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
}

#container form.streams input.invalid {
  color: rgb(255, 76, 88);
  border-color: rgb(255, 76, 88);
}

#container form.streams a.add, #container form.streams a.remove {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
  font-size: 13px;
  border: 1px solid rgb(5, 180, 255);
  color: rgb(5, 180, 255);
  display: inline-block;
  border-radius: 3px;
  margin-top: 30px;
  padding: 2px 9px;
}

#container form.streams a.remove {
  margin-left: 10px;
  margin-right: 10px;
}

#container form.streams a.add {
  margin-top: 30px;
}

#container form.streams a.add:hover, #container form.streams a.remove:hover {
  border-color: orange;
  color: orange;
}

#container form.streams input[type="submit"] {
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.5;
  padding: 4px 18px;
  margin-top: 40px;
}

#container .instructions {
  text-align: center;
  margin-top: 20px;
}

#container .instructions a.title {
  font-weight: 300;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25em;
  color: rgb(5, 180, 255);
  padding: 20px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#container .instructions a.title:hover {
  color: orange;
}

#container .instructions .content {
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25em;
  color: #fefefe;
  font-size: 1em;
}

#container .instructions .content .addresses input {
  color: rgb(176, 255, 74);
  border: 1px solid #333;
}

#container .instructions .content .playlist {
  width: 200px;
  border: 1px solid #fefefe;
  background: none;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 1.75;
  color: #fefefe;
  padding: 8px 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  width: 322px;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.75;
  padding: 8px 16px;
  margin: 20px 10px 0 10px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
}

#container .instructions .content .playlist:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#container .instructions .content .convert {
  border: 1px solid rgb(5, 180, 255);
  background: none;
  border-radius: 4px;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 1.75;
  color: rgb(5, 180, 255);
  padding: 4px 12px;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

#container .instructions .content .convert:hover {
  border-color: orange;
  color: orange;
}

form.addresses input[type="text"]:disabled {
  -webkit-text-fill-color: rgb(176, 255, 74);
  -webkit-opacity: 1;
  color: rgb(176, 255, 74);
}
