.config {
  user-select: none;
  box-shadow: -1px 0 0 0 rgba(129, 162, 178, 0.25);
  padding: 24px;
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  color: #3e456d;
  box-sizing: border-box;
}

.config *,
.config *::before,
.config *::after {
  box-sizing: inherit;
  font-family: inherit;
}

.config__logo {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}

.config__title {
  margin: 0 0 32px;
  font-size: 22px;
  font-weight: 500;
}

.config__controls {
  display: grid;
  grid-gap: 24px;
  align-content: flex-start;
}

.config__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.config__input {
  display: grid;
  grid-gap: 4px;
}

.config__input-element {
  height: 40px;
  border-radius: 4px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(129, 162, 178, 0.25);
  padding: 8px;
  font-size: 16px;
  color: inherit;
}

.config__input-element::placeholder {
  color: #c1c6d2;
}

.config__label {
  font-size: 14px;
  font-weight: 500;
}

.config__button {
  height: 40px;
  border-radius: 4px;
  color: #f0efff;
  background: #230d7b;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  padding: 4px 8px;
  cursor: pointer;
}
