body.authorize main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.authorize main header div {
  text-align: end;
}
body.authorize main header div p {
  font-weight: inherit;
  font-size: 1em;
}
body.authorize main header div p a {
  color: initial;
}
body.authorize .box {
  padding: 20px;
}
body.authorize .box .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
body.authorize .box .content .name {
  font-size: 1.5em;
  margin: 10px;
  font-weight: 600;
}
body.authorize .box .content .scope ul {
  list-style: none;
  padding: 0;
  margin: 10px;
  text-align: center;
}
body.authorize .box .content .action {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin: 10px;
}
body.authorize .box .content .action button {
  cursor: pointer;
  padding: 10px;
  background: var(--dark);
  color: var(--light);
  border-radius: 10px;
  border: 1px solid var(--bg);
  width: 100px;
  transition: all 0.3s ease;
}
body.authorize .box .content .action button.cancel {
  color: var(--dark);
  background: var(--light);
}
body.authorize .box .content .action button:hover {
  transform: scale(0.99);
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--dark);
}/*# sourceMappingURL=authorize.css.map */