.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.access-form {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(100%, 540px);
	margin: 34px auto 0;
	padding: 5px;
	background: rgba(5, 7, 6, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.access-form input {
	min-width: 0;
	flex: 1;
	padding: 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font: inherit;
}

.access-form input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.access-form:focus-within {
	border-color: rgba(255, 255, 255, 0.75);
}

.access-form .button {
	flex: none;
	margin-top: 0;
	border: 0;
	cursor: pointer;
}

.radar span {
	animation-name: radar-spin;
	transform-origin: center;
}

@keyframes radar-spin {
	to {
		transform: rotate(360deg);
	}
}

.access-form .button:disabled {
	cursor: wait;
	opacity: 0.68;
}

.access-status {
	position: relative;
	z-index: 2;
	min-height: 24px;
	margin: 12px 0 0;
	font-size: 13px;
}

.access-status.is-error {
	color: #ffd5cc;
}

@media (max-width: 560px) {
	.access-form {
		flex-direction: column;
		gap: 5px;
		padding: 5px;
	}

	.access-form input {
		height: 54px;
	}

	.access-form .button {
		justify-content: center;
	}
}
