input.ml-input,
textarea.ml-input {
	width: 100%;
	height: var(--scale8-8);
	border-width: 1px;
	border-style: solid;
	border-color: var(--ml-text-color);
	border-radius: 5px;
	padding: 0 20px;
	font-family: var(--text-font-family);
	font-size: var(--rem-l);
	color: var(--ml-text-color);
	box-sizing: border-box;
}

input.ml-input::placeholder,
textarea.ml-input::placeholder {
	color: var(--ml-text-lowlight-color);
}

input.ml-input[readonly] {
	background-color: transparent;
	color: var(--ml-text-color);
	border: 1px solid var(--ml-border-color);
	cursor: default;
	outline: 0;
}

label.ml-input-label {
	font-family: var(--header-font-family);
	font-weight: bold;
	font-size: var(--rem-base);
}

input.ml-input.style-search {
	background-color: var(--ml-background-moodlight-color);
	border-color: var(--ml-shadow);
}

@media all and (max-width: 904px) {
	input.ml-input {
		font-size: var(--rem-base);
	}
}