.site-logout-modal__message {
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(126, 144, 222, .16);
}

.site-logout-modal__message h2 {
	margin: 0;
	color: #ffffff;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.3;
}

.site-logout-modal__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.site-logout-modal__button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid rgba(126, 144, 222, .2);
	border-radius: 0;
	background: rgba(8, 11, 25, .46);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
	color: rgba(221, 226, 241, .8);
	font: inherit;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	transition:
		border-color 170ms ease,
		background-color 170ms ease,
		box-shadow 170ms ease,
		color 170ms ease,
		filter 170ms ease;
}

.site-logout-modal__button:hover,
.site-logout-modal__button:focus-visible {
	border-color: rgba(126, 144, 222, .52);
	background: rgba(126, 144, 222, .1);
	box-shadow: 0 0 18px rgba(126, 144, 222, .08), inset 0 0 20px rgba(126, 144, 222, .04);
	color: #ffffff;
	filter: brightness(1.08);
	outline: none;
}

.site-logout-modal__button--confirm {
	border-color: rgba(255, 69, 85, .34);
	color: #ff8993;
}

.site-logout-modal__button--confirm:hover,
.site-logout-modal__button--confirm:focus-visible {
	border-color: rgba(255, 69, 85, .72);
	background: rgba(255, 69, 85, .1);
	box-shadow: 0 0 20px rgba(255, 69, 85, .12), inset 0 0 20px rgba(255, 69, 85, .06);
	color: #ffb0b7;
}

@media (max-width: 620px) {
	.site-logout-modal__message {
		padding-bottom: 22px;
	}

	.site-logout-modal__message h2 {
		font-size: 18px;
	}

	.site-logout-modal__actions {
		grid-template-columns: minmax(0, 1fr);
	}
}
