main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 16px;

	min-width: 100vw;
	min-height: 100lvh;
	padding: 24px;
	/* ----- ----- ----- */
	section {
		max-width: 400px;
		border: 2px solid var(--theme-scrollbar);
		/* ----- ----- ----- */
		input {
			border: 2px solid var(--theme-scrollbar);
			border-left: none;
			border-radius: 0 5px 5px 0;
		}
		/* ----- ----- ----- */
		label {
			border-radius: 5px 0 0 5px;
		}
	}
}