.tForm{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: none;
	grid-auto-rows: auto;
	/* gap: 1.5rem; */
}
.tForm input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	filter: invert(0.5);
  }
.tForm input{
	font-family: inherit;
	font-size: 1rem;
	/* font-weight: 400; */
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0px;
	width: 100%;
	border: none;
	border-bottom: 1px solid #00000000;
	background-color: transparent;
	color: var(--c0);
	outline: none;
	margin-bottom: 0px;
	padding: 0.8rem 0.2rem 0.1rem 0.2rem;
	box-sizing: border-box;
}
.tForm input:focus{
	/* border-bottom: 1px solid #00000080; */
	/* background-color: white; */
	background-color: var(--c1);
}
.tForm input:focus + label,
.tForm input:not(:placeholder-shown) + label{
	font-size: 0.75rem;
	top: -0.9rem;
	color: var(--c3);
}

.tForm textarea{
	font-family: inherit;
	
	border: 1px solid #00000020;
	/* margin-bottom: 30px; */
	/* padding-bottom: 3px; */
	background-color: transparent;
	/* color: var(--cF); */
	outline: none;
	resize: none;
	width: 100%;
	box-sizing: border-box;
	margin: 0px;
	box-sizing: border-box;
}
.tForm textarea:focus{
	border: 1px solid #00000080;
}
.tForm textarea:focus + label,
.tForm textarea:not(:placeholder-shown) + label{
	font-size: 0.75rem;
	top: -1rem;
	color: var(--c5);
}

.tForm label{
	/* font-size: 0.75rem; */
	position: absolute;
	cursor: text;
	/* z-index: 2; */
	top: 0px;
	left: 0px;
	transition: all .3s ease;
	color: var(--c3);
	/* padding-left: 0.1rem; */
	box-sizing: border-box;
	/* display: none; */
	padding: 0.8rem 0.2rem 0.0rem 0.2rem;
}

.tForm select{
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	/* font-weight: 400; */
	-webkit-appearance: none;
	background-color: transparent;
	color: var(--c0);
	outline: none;
	padding: 0px;
	padding-bottom: 3px;
	margin-bottom: 0px;

	background-image: url(assets/arrow_drop_down_gray_24dp.svg);
	background-repeat: no-repeat;
	background-position-x: 100%;
	background-position-y: center;
	
	-webkit-border-radius: 0;
	border-radius: 0px;
	width: 100%;
	border: none;
	border-bottom: 1px solid hsl(0,0%,33%);
	/* margin-bottom: 30px; */
}
.tForm select option[value=""]{
	color: #00000080;
}
.tForm select:required:invalid {
	color: #00000080;
}
.tForm option[value=""][disabled] {
	display: none;
}
.tForm .unselected{
	padding: 0.25rem 0.5rem;
	border: solid 0.1rem var(--c5);
	cursor: pointer;
}
.tForm .unselected:hover{
	border: solid 0.1rem var(--c5);
	color: var(--c0);
	background-color: var(--c5);
}

.tForm input::placeholder, .tForm textarea::placeholder{
	/* color: var(--c3); */
	color: transparent;
}
.tForm input ~ .invalidText, .tForm textarea ~ .invalidText{
	position: relative;
	/* top: -4px; */
	color: red;
	font-size: 0.8rem;
	max-height: 0;
	overflow: hidden;
	padding: 0.05rem 0px 0px 0px;
	transition-duration: 0.5s;
	margin: 0px;
	/* padding: 0px; */
}
.tForm input:-webkit-autofill{
	background-color: transparent;
}
.tForm input:invalid:not(:placeholder-shown) ~ .invalidText{
	max-height: 17.5px;
}
.tForm .disabled{
	pointer-events: none;
}

.tForm input::-webkit-outer-spin-button,
.tForm input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tForm input[type=number] {
  -moz-appearance: textfield;
}