.gl-button.gl-button {
  border-radius: .25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: var(--gl-button-default-primary-background-color-default);
  line-height: 1rem;
  color: var(--gl-button-default-primary-foreground-color-default);
  fill: currentColor;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid var(--gl-button-default-primary-border-color-default);
  min-height: 2rem;
  min-width: 2rem;
  transition: color .2s cubic-bezier(0.22, 0.61, 0.36, 1), background-color .2s cubic-bezier(0.22, 0.61, 0.36, 1), border-color .2s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow .2s cubic-bezier(0.22, 0.61, 0.36, 1), text-decoration-color .2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gl-button.gl-button.btn-confirm {
  color: #fff;
  background-color: #1f75cb;
  border-color: #1068bf;
}

.gl-button.gl-button.btn-confirm:hover {
  color: #fff;
  background-color: #1068bf;
  border-color: #064787;
}

.gl-button.gl-button.btn-confirm:focus {
  color: #fff;
  background-color: #1068bf;
  border-color: #064787;
}

.gl-button.gl-button:focus, .gl-button.gl-button:focus:active {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #1f75cb;
  outline: none;
}

body, html {
  overflow: hidden;
  height: 100%;
  background-color: #302F35;
  background: url('/static/gitlab-blurred.png') no-repeat center center fixed;
  background-size: cover;
}

* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #302F35;
  border-radius: 0.25rem;
  padding: 1rem;
  margin: 1rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.logo {
  max-width: 64px;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 1rem 1rem 1rem;
  font-size: 0.92rem;
  text-align: center;
}

.w-100 {
  width: 100%;
}