:root {
	--text-color: #fff;
	--alternate-text-color: #bdbdbd;
	--accent-color: #3259e8;
	--grey-color-1: #3c4550;
	--grey-color-2: #151a1f;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	cursor: default;
}

body {
	background: #1d1f26;
	color: var(--text-color);
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}

.container__block {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content__block {
	display: none;
	width: 420px;
	background: #0e1217;
	background-image: url("/img/header-background.png");
	background-size: contain;
	background-repeat: no-repeat;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 0 10px rgb(0 0 0 / 25%);
}

.content__block:first-child {
	display: block;
}

.header__block {
	display: flex;
	column-gap: 10px;
	align-items: center;
	margin-bottom: 15px;
}

.header-block__icon {
	width: 35px;
	height: 35px;
}

.header-block__heading {
	font-size: 20px;
	font-weight: 400;
}

.form__block {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

.form__label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 7px;
}

.form__input {
	display: block;
	width: 100%;
	background: var(--grey-color-2);
	border: 1px solid var(--grey-color-1);
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	color: var(--text-color);
	padding: 11px 12px;
	transition: .35s;
}

.form__input::placeholder {
	color: var(--grey-color-1);
	font-size: 20px;
}

.form__input:focus {
	border-color: var(--accent-color);
	outline: none;
}

.form__input.invalid {
	border-color: #ff3f34;
}

.form__button {
	width: 100%;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 5px;
	background: var(--accent-color);
	color: var(--text-color);
	border: 2px solid transparent;
	border: none;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: .35s;
	padding: 10px;
}

.form__button:hover {
	background: #2143bf;
}

.form__button:disabled {
	opacity: .5;
	pointer-events: none;
}

.form__button * {
	cursor: pointer;
}

.form__button.alternate {
	background: transparent;
	border: 2px solid var(--grey-color-1);
}

.form__button.alternate:hover {
	opacity: .75;
}

.form__button svg {
	width: 25px;
	height: 25px;
}

.form__button .loader__icon {
	width: 30px;
	height: 30px;
}

.form-error__label {
	display: none;
	font-size: 13px;
	color: #ff3f34;
}

.inner__text {
	font-size: 14px;
	line-height: 20px;
	color: var(--alternate-text-color);
	margin-bottom: 20px;
}

.inner__text a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid var(--alternate-text-color);
	cursor: pointer;
	transition: .35s;
}

.inner__text a:hover {
	color: var(--text-color);
	border-color: var(--text-color);
}

.list__block {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	margin-bottom: 20px;
}

.list-item__block {
	display: flex;
	align-items: center;
	column-gap: 20px;
	background: var(--grey-color-2);
	padding: 15px 20px;
	border: 1px solid var(--grey-color-1);
	border-radius: 8px;
	cursor: pointer;
	transition: .35s;
}

.list-item__block * {
	cursor: pointer;
}

.list-item__block:not(.active):hover {
	opacity: .75;
}

.list-item__block.active {
	border-color: var(--accent-color);
	cursor: default;
}

.list-item__block.active * {
	cursor: default;
}

.list-item__block.active .list-item__selector {
	background: var(--text-color);
	border-width: 3px;
	border-color: var(--accent-color);
}

.list-item__inner:last-child {
	width: 100%;
}

.list-item__selector {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid var(--grey-color-1);
	border-radius: 50%;
}

.list-item__heading {
	display: flex;
	column-gap: 10px;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
}

.list-heading__icon {
	width: 20px;
}

.buttons__inner {
	display: flex;
	column-gap: 15px;
}

.buttons__inner .form__button {
	display: flex;
}

.buttons__inner .form__button.alternate {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 30%;
}

.inner__pre {
	max-width: 100%;
	max-height: 220px;
	background: var(--grey-color-2);
	border: 1px solid var(--grey-color-1);
	border-radius: 8px;
	font-family: monospace;
	font-size: 12px;
	color: var(--text-color);
	white-space: normal;
	word-break: break-all;
	overflow-y: auto;
	padding: 10px;
	margin-bottom: 20px;
}

.inner__pre::-webkit-scrollbar {
	width: 5px;
}

.inner__pre::-webkit-scrollbar-thumb {
  	background: var(--grey-color-1);
  	z-index: -999;
}