/* 
	Run after normalize.css 
	Just some basics for my style
*/

/* Preferred box-sizing value */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img,
svg {
	max-inline-size: 100%;
	max-block-size: 100%;
	max-width: 100%;
	max-height: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.msgBox .signInMain label:has(input[type="checkbox"]) {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
