* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f7f7f7;
  font-size: 0.9em;
  color: #555;
}

a {
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: inherit;
}

button {
  background: #111;
  color: #fff;
  border-radius: 5px;
  background: #111;
  padding: 10px 25px;
  font-size: 0.9em;
  border: none;
}

button {
  cursor: pointer;
}

button:hover {
  background: #333;
}

button:disabled {
  background: none;
  border: 1px solid #ccc;
  cursor: default;
  color: #555;
}

h1 {
  margin: 30px;
  font-size: large;
  text-align: center;
}

.error {
  color: #bb1111;
}

.main {
  width: 450px;
  margin: 100px auto 0;
}

.main .frame {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 70px;
  background: #fff;
}

.main .frame img {
  width: 100px;
  height: 100px;
}

.main .frame .content {
  text-align: center;
  margin: 30px;
}

.main .frame .message {
  text-align: center;
  margin-top: 20px;
}

.login {
  display: flex;
  flex-flow: column nowrap;
}

.login form {
  display: flex;
  flex-flow: row nowrap;
  margin: 20px 0;
  gap: 20px;
}

.login input {
  width: 200px;
}

.user,
.logout,
.callback {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.launch {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
}

.launch .hint {
  text-align: center;
}


@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light-webfont.eot');
  src: url('../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light-webfont.woff') format('woff'),
    url('../fonts/Roboto-Light-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
  font-weight: normal;
  font-style: normal;
}