.auth-gate[hidden] {
	display: none;
}

.auth-gate {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

/* larger than 479px */
@media only screen and (min-width: 480px) {

	.auth-gate {
		padding: 20px;
	}

}

.auth-gate--overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.auth-gate--dialog {
	position: relative;
	text-align: center;
	width: min(100%, 400px);
	padding: 24px 32px;
	border-radius: var(--border-radius-regular);
	background-color: rgb(255, 255, 255);
	outline: none;
}

.auth-gate--close {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: var(--border-radius-circle);
	background-color: rgba(0, 0, 0, 0);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.auth-gate--close--icon {
	width: 20px;
	height: 20px;
}

.auth-gate--logo {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.auth-gate--logo img {
	display: block;
	width: 48px;
	height: auto;
}

.auth-gate--title {
	margin-bottom: 12px;
	font-size: var(--h3-font-size);
	line-height: var(--h3-line-height);
}

.auth-gate--text {
	margin: 0;
}

.auth-gate--actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}
