:root {
	--border-color: #CCCCCC;

	--destructive-action-color: #DE2323;
	--constructive-action-color: #23DE23;

	--split-view-divider-size: 16px;
}

input, button, textarea {
	font-size: 13px;
	box-sizing: border-box;
}

select {
	font-size: 16px;
	box-sizing: border-box;
}

input:not([type="submit"]):not([type="range"]), textarea {
	border: 1px solid var(--border-color);
	padding: 3px;
	padding-top: 1.5px;
	padding-bottom: 1.5px;
	resize: none;
}

input[type="checkbox"] {
	font-size: 16px;
}

@media screen and (max-width: 480px) {
	input:not([type="submit"]):not([type="checkbox"]), textarea, select {
		border: 1px solid var(--border-color);
		padding: 10px;
		padding-top: 6px;
		padding-bottom: 6px;
		border-radius: 6px;
		font-size: 16px;
		-webkit-appearance: none;
		display: block;
		width: 100%;
	}

	button, input[type="submit"] {
		font-weight: bold;
		color: var(--design-color);
		font-size: 18px;
		padding: 0;
		border: none;
		background-color: rgba(0, 0, 0, 0);
		-webkit-appearance: none;
	}
}