input[type="text"] {
	border: 0;
	//border-bottom: 1px solid rgba(0,0,0,0.1);
	box-shadow: none;
	transition: all 0.2s ease-out;
	//&:hover {
	//	border-bottom: 1px solid $second__color;
	//}
}
input[type="button"] {
	font-family: 'Open Sans';
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 4px 8px;
	color: #fff;
	height: auto;
	transition: all 0.2s ease-out;
	&:hover {
		cursor: pointer;
	}
}
textarea {
	box-shadow: none;

	&:hover {
		border-bottom: 1px solid $second__color;
	}
}

.list-task {
	input[type="text"], textarea {
		background-color: transparent;
	}
}
