* {
  box-sizing: border-box;
  border-collapse: collapse;
}
body {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #002244;
  background: linear-gradient(#003355, #001133);
  color: #eee;
}
.fill-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}
label {
  display: block;
  margin-bottom: 0;
  font-size: 0.9em;
}
input[type="text"] {
  background: transparent;
  border: 2px solid #fff;
  padding: 4px;
  border-radius: 4px;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clear-float {
  clear: both;
}
.console-button {
  display: inline-block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: bolder;
  color: #0f0;
  text-shadow: 0 0 4px rgba(0,255,0,0.625);
  padding: 8px;
  background: rgba(0,0,0,0.5);
  border: 1px solid #0f0;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0,255,0,0.5);
}

/* Signin Method Icons */

.signin-button {
  border: none;
  border-radius: 1.25em;
  padding: 0.5em 1em 0.5em 0.5em;
  background: #fff;
}
i.signin-method-icon {
  font-size: 1.375em;
  margin-right: 0.25em;
}
img.signin-method-icon {
  max-width: 1.5em;
  vertical-align: bottom;
  margin-right: 0.25em;
}
