#authorize-page {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/bg.svg) no-repeat top center;
  background-size: cover;
  color: #616161;
  font-family: Raleway, sans-serif;
  min-height: 95vh;
}

#authorize-page .content {
  width: 380px;
  margin: 0;
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.2), 0 3px 4px 0 rgba(0,0,0,.14), 0 3px 3px -2px rgba(0,0,0,.12);
}

#authorize-page .login-item {
  display: flex;
  flex-direction: row;
}

#authorize-page .login-item .item-image {
  height: 50px;
}

#authorize-page .login-item .item-content {
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#authorize-page .login-item .item-content .team-name {
  margin: 0 0 3px 0;
  font-size: 16px;
}

#authorize-page .login-item.selection .item-content .team-name {
  margin: 2px 0 3px 0;
  font-size: 16px;
}

#authorize-page .login-item .item-content .user-name {
  margin: 0;
  font-size: 14px;
}

#authorize-page .login-item .item-content .user-name strong {
  margin-left: 5px;
}

#authorize-page .content .app-description {
  text-align: center;
  margin: 45px 0 50px 0;
}

#authorize-page .content .app-description .app-icon {
  max-width: 70px;
}

#authorize-page .content .app-description .app-name {
  font-size: 18px;
  margin-bottom: 0;
}

#authorize-page .content .scopes {
  margin-bottom: 35px;
}

#authorize-page .content .scopes .scope-description {
  padding: 12px 0;
  border-bottom: 1px solid #61616187;
}

#authorize-page .content .scopes .scope-description:first-child {
  border-top: 1px solid #61616187;
}

#authorize-page .content .access-type {
  margin-bottom: 35px;
  font-size: 14px;
  text-align: center;
  padding: 0 10px;
}

#authorize-page .content .actions {
  display: flex;
  flex-direction: row;
}

#authorize-page .content .actions .action-link {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
}

#authorize-page .content .actions .action-link.success {
  background-color: #82c885;
  color: #fff;
  margin-left: 15px;
}

#authorize-page .content .actions .action-link.success:hover {
  background-color: #70c074;
  cursor: pointer;
}

#authorize-page .content .actions .action-link.default {
  color: #555;
}

#authorize-page .content .actions .action-link.default:hover {
  background-color: #e5e5e5;
}

#authorize-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #efefef;
  color: #616161;
}

#authorize-page .select2-container--default .select2-selection--single {
  background-color: #fff;
  height: 60px;
  padding: 4px 0;
  border-radius: 0;
  border: none;
}

#authorize-page *:focus {
  outline: none;
}

#authorize-page .select2-dropdown {
  border: none;
  border-radius: 0;
}

#authorize-page .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 6px;
}

#authorize-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #616161;
  line-height: 18px;
}

#authorize-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 16px;
}